diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-11-06 17:45:08 +0100 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-11-17 20:37:28 +0100 |
commit | 13d051b4434e8931967a43a7e2b76a64cae81617 (patch) | |
tree | 85acb8aa56299fa63d5ca11168564cd4695fd0db /lisp/emacs-lisp | |
parent | b0200a37e4d6da32f72ce3832ed44a57934c599c (diff) | |
download | emacs-13d051b4434e8931967a43a7e2b76a64cae81617.tar.gz emacs-13d051b4434e8931967a43a7e2b76a64cae81617.tar.bz2 emacs-13d051b4434e8931967a43a7e2b76a64cae81617.zip |
Remove references to internal symbols from public docstrings
* lisp/emacs-lisp/package-vc.el (package-vc-repository-store):
Unmention 'package-vc--unpack'.
(package-vc-install): Unmention 'package-vc--guess-backend' in favour
of 'package-vc-heuristic-alist'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package-vc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index 5d9e7c91a5a..44b310e76d6 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -102,7 +102,7 @@ (defcustom package-vc-repository-store (expand-file-name "emacs/vc-packages" (xdg-data-home)) - "Directory used by `package-vc--unpack' to store repositories." + "Directory used by to store repositories." :type 'directory :version "29.1") @@ -625,7 +625,7 @@ name as deduced from NAME-OR-URL. Optional argument BACKEND specifies the VC backend to use for cloning the package's repository; this is only possible if NAME-OR-URL is a URL, a string. If BACKEND is omitted or nil, the function -uses `package-vc--guess-backend' to guess the backend." +uses `package-vc-heuristic-alist' to guess the backend." (interactive (progn ;; Initialize the package system to get the list of package |