Function: picture-self-insert

picture-self-insert is an interactive and byte-compiled function defined in picture.el.gz.

Signature

(picture-self-insert ARG)

Documentation

Insert this character in place of character previously at the cursor.

The cursor then moves in the direction you previously specified with the commands picture-movement-right, picture-movement-up, etc. Use "\\[command-apropos] picture-movement" to see those commands.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-self-insert (arg)
  "Insert this character in place of character previously at the cursor.
The cursor then moves in the direction you previously specified
with the commands `picture-movement-right', `picture-movement-up', etc.
Use \"\\[command-apropos] picture-movement\" to see those commands."
  (interactive "p")
  (picture-update-desired-column (not (eq this-command last-command)))
  (picture-insert last-command-event arg)) ; Always a character in this case.