Variable: finder--builtins-alist

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

Value

(("calc" . calc)
 ("ede" . ede)
 ("erc" . erc)
 ("eshell" . eshell)
 ("gnus" . gnus)
 ("international" . emacs)
 ("language" . emacs)
 ("leim" . emacs)
 ("ja-dic" . emacs)
 ("quail" . emacs)
 ("mh-e" . mh-e)
 ("obsolete" . emacs)
 ("semantic" . semantic)
 ("analyze" . semantic)
 ("bovine" . semantic)
 ("decorate" . semantic)
 ("symref" . semantic)
 ("wisent" . semantic)
 ("nxml" . nxml)
 ("org" . org)
 ("srecode" . srecode)
 ("term" . emacs)
 ("url" . url))

Documentation

Alist of built-in package directories.

Each element should have the form (DIR . PACKAGE), where DIR is a directory name and PACKAGE is the name of a package (a symbol). When generating package--builtins, Emacs assumes any file in DIR is part of the package PACKAGE.

Source Code

;; Defined in /usr/src/emacs/lisp/finder.el.gz
(defvar finder--builtins-alist
  '(("calc" . calc)
    ("ede"  . ede)
    ("erc"  . erc)
    ("eshell" . eshell)
    ("gnus" . gnus)
    ("international" . emacs)
    ("language" . emacs)
    ("leim" . emacs)
    ("ja-dic" . emacs)
    ("quail" . emacs)
    ("mh-e" . mh-e)
    ("obsolete" . emacs)
    ("semantic" . semantic)
    ("analyze" . semantic)
    ("bovine" . semantic)
    ("decorate" . semantic)
    ("symref" . semantic)
    ("wisent" . semantic)
    ;; This should really be ("nxml" . nxml-mode), because nxml-mode.el
    ;; is the main file for the package.  Then we would not need an
    ;; entry in finder--builtins-descriptions.  But I do not know if
    ;; it is safe to change this, in case it is already in use.
    ("nxml" . nxml)
    ("org"  . org)
    ("srecode" . srecode)
    ("term" . emacs)
    ("url"  . url))
  "Alist of built-in package directories.
Each element should have the form (DIR . PACKAGE), where DIR is a
directory name and PACKAGE is the name of a package (a symbol).
When generating `package--builtins', Emacs assumes any file in
DIR is part of the package PACKAGE.")