Function: clear-all-completions
clear-all-completions is an interactive and byte-compiled function
defined in completion.el.gz.
Signature
(clear-all-completions)
Documentation
Initialize the completion storage. All existing completions are lost.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/completion.el.gz
;;-----------------------------------------------
;; Completion Database - Utilities
;;-----------------------------------------------
(defun clear-all-completions ()
"Initialize the completion storage. All existing completions are lost."
(interactive)
(setq cmpl-prefix-obarray (make-vector cmpl-obarray-length 0))
(setq cmpl-obarray (make-vector cmpl-obarray-length 0)))