Function: package-all-keywords

package-all-keywords is a byte-compiled function defined in package.el.gz.

Signature

(package-all-keywords)

Documentation

Collect all package keywords.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defun package-all-keywords ()
  "Collect all package keywords."
  (let ((key-list))
    (package--mapc (lambda (desc)
                     (setq key-list (append (package-desc--keywords desc)
                                            key-list))))
    key-list))