Function: edmacro-insert-key
edmacro-insert-key is an interactive and byte-compiled function
defined in edmacro.el.gz.
Signature
(edmacro-insert-key KEY)
Documentation
Insert the written name of a KEY in the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/edmacro.el.gz
(defun edmacro-insert-key (key)
"Insert the written name of a KEY in the buffer."
(interactive "kKey to insert: ")
(if (bolp)
(insert (edmacro-format-keys key t) "\n")
(insert (edmacro-format-keys key) " ")))