Function: binhex-insert-char
binhex-insert-char is a byte-compiled function defined in
binhex.el.gz.
Signature
(binhex-insert-char CHAR &optional COUNT IGNORED BUFFER)
Documentation
Insert COUNT copies of CHARACTER into BUFFER.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/binhex.el.gz
(defun binhex-insert-char (char &optional count _ignored buffer)
"Insert COUNT copies of CHARACTER into BUFFER."
(if (or (null buffer) (eq buffer (current-buffer)))
(insert-char char count)
(with-current-buffer buffer
(insert-char char count))))