Function: list-all-completions-by-hash-bucket

list-all-completions-by-hash-bucket is a byte-compiled function defined in completion.el.gz.

Signature

(list-all-completions-by-hash-bucket)

Documentation

Return list of lists of known completion entries, organized by hash bucket.

Source Code

;; Defined in /usr/src/emacs/lisp/completion.el.gz
(defun list-all-completions-by-hash-bucket () ;FIXME: Unused!
  "Return list of lists of known completion entries, organized by hash bucket."
  (let ((return-value nil))
    (mapatoms (lambda (prefix-symbol)
                (if (boundp prefix-symbol)
                    (push (cmpl-prefix-entry-head (symbol-value prefix-symbol))
                          return-value)))
	      cmpl-prefix-obarray)
    return-value))