Function: tmm-clear-self-insert-and-exit
tmm-clear-self-insert-and-exit is an interactive and byte-compiled
function defined in tmm.el.gz.
Signature
(tmm-clear-self-insert-and-exit)
Documentation
Clear the minibuffer contents then self insert and exit.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/tmm.el.gz
(defun tmm-clear-self-insert-and-exit ()
"Clear the minibuffer contents then self insert and exit."
(interactive)
(delete-minibuffer-contents)
(self-insert-and-exit))