Variable: finder--builtins-descriptions

finder--builtins-descriptions is a variable defined in finder.el.gz.

Value

((emacs . "the extensible text editor")
 (nxml . "a new XML mode"))

Documentation

Alist of built-in package descriptions.

Entries have the form (PACKAGE-SYMBOL . DESCRIPTION). When generating package--builtins, this overrides what the description would otherwise be.

Source Code

;; Defined in /usr/src/emacs/lisp/finder.el.gz
(defconst finder--builtins-descriptions
  ;; I have no idea whether these are supposed to be capitalized
  ;; and/or end in a full-stop.  Existing file headers are inconsistent,
  ;; but mainly seem to not do so.
  '((emacs . "the extensible text editor")
    (nxml . "a new XML mode"))
  "Alist of built-in package descriptions.
Entries have the form (PACKAGE-SYMBOL . DESCRIPTION).
When generating `package--builtins', this overrides what the description
would otherwise be.")