Function: artist-replace-chars

artist-replace-chars is a byte-compiled function defined in artist.el.gz.

Signature

(artist-replace-chars NEW-CHAR COUNT)

Documentation

Replace characters at point with NEW-CHAR. COUNT chars are replaced.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-replace-chars (new-char count)
  "Replace characters at point with NEW-CHAR.  COUNT chars are replaced."
  (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 count)))