diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-11-27 15:31:29 +0100 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-11-27 15:32:00 +0100 |
commit | ca42ff5f0ee757f0a70f603863c83e85eef683b9 (patch) | |
tree | 4f9e56225a182b081337671f428abad90d0ab7b0 /lisp/emacs-lisp/package.el | |
parent | 31cfd6d3116d18c2c5b031369aeba0170d4920de (diff) | |
download | emacs-ca42ff5f0ee757f0a70f603863c83e85eef683b9.tar.gz emacs-ca42ff5f0ee757f0a70f603863c83e85eef683b9.tar.bz2 emacs-ca42ff5f0ee757f0a70f603863c83e85eef683b9.zip |
Consistently refer to VC packages as such
* lisp/emacs-lisp/package-vc.el: Replace instances of "source package"
in comments and docstrings.
* lisp/emacs-lisp/package.el: Replace instances of "source package" in
comments and docstrings.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index e11c5d693e5..8d44fae30a0 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -458,7 +458,7 @@ synchronously." (defvar package--default-summary "No description available.") (define-inline package-vc-p (pkg-desc) - "Return non-nil if PKG-DESC is a source package." + "Return non-nil if PKG-DESC is a VC package." (inline-letevals (pkg-desc) (inline-quote (eq (package-desc-kind ,pkg-desc) 'vc)))) @@ -909,7 +909,7 @@ correspond to previously loaded files." (let ((v1 (package-desc-version p1)) (v2 (package-desc-version p2))) (or - ;; Prefer source packages. + ;; Prefer VC packages. (package-vc-p p1) (package-vc-p p2) ;; Prefer builtin packages. |