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 (obarray-make cmpl-obarray-length))
  (setq cmpl-obarray (obarray-make cmpl-obarray-length)))