Function: eldoc-remove-command

eldoc-remove-command is a byte-compiled function defined in eldoc.el.gz.

Signature

(eldoc-remove-command &rest CMDS)

Documentation

Remove each of CMDS from the obarray eldoc-message-commands.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eldoc.el.gz
(defun eldoc-remove-command (&rest cmds)
  "Remove each of CMDS from the obarray `eldoc-message-commands'."
  (dolist (name cmds)
    (and (symbolp name)
         (setq name (symbol-name name)))
    (unintern name eldoc-message-commands)))