Function: enable-command
enable-command is an autoloaded, interactive and byte-compiled
function defined in novice.el.gz.
Signature
(enable-command COMMAND)
Documentation
Allow COMMAND to be executed without special confirmation from now on.
COMMAND must be a symbol. This command alters the user's .emacs file so that this will apply to future sessions.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/novice.el.gz
;;;###autoload
(defun enable-command (command)
"Allow COMMAND to be executed without special confirmation from now on.
COMMAND must be a symbol.
This command alters the user's .emacs file so that this will apply
to future sessions."
(interactive "CEnable command: ")
(en/disable-command command nil))