Function: artist-replace-char
artist-replace-char is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-replace-char NEW-CHAR)
Documentation
Replace the character at point with NEW-CHAR.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-replace-char (new-char)
"Replace the character at point with NEW-CHAR."
(let ((overwrite-mode 'overwrite-mode-textual)
(fill-column 32765) ; Large :-)
(blink-matching-paren nil))
(setq last-command-event (artist-get-replacement-char new-char))
(self-insert-command 1)))