Function: disable-command

disable-command is an autoloaded, interactive and byte-compiled function defined in novice.el.gz.

Signature

(disable-command COMMAND)

Documentation

Require special confirmation to execute COMMAND from now on.

COMMAND must be a symbol. This command alters your init file so that this choice applies to future sessions.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/novice.el.gz
;;;###autoload
(defun disable-command (command)
  "Require special confirmation to execute COMMAND from now on.
COMMAND must be a symbol.
This command alters your init file so that this choice applies to
future sessions."
  (interactive "CDisable command: ")
  (en/disable-command command t))