Function: eldoc-remove-command-completions

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

Signature

(eldoc-remove-command-completions &rest NAMES)

Documentation

Pass every prefix completion of NAMES to eldoc-remove-command.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eldoc.el.gz
(defun eldoc-remove-command-completions (&rest names)
  "Pass every prefix completion of NAMES to `eldoc-remove-command'."
  (dolist (name names)
    (apply #'eldoc-remove-command
           (all-completions name eldoc-message-commands))))