Function: package-versioned-builtin-packages

package-versioned-builtin-packages is a byte-compiled function defined in package.el.gz.

Signature

(package-versioned-builtin-packages)

Documentation

Return a list of all the versioned built-in packages.

The return value is a list of names of built-in packages represented as symbols.

View in manual

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
;;;; Public interfaces for accessing built-in package info

(defun package-versioned-builtin-packages ()
  "Return a list of all the versioned built-in packages.
The return value is a list of names of built-in packages represented as
symbols."
  (mapcar #'car package--builtin-versions))