diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-11-05 16:31:16 +0100 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-11-05 17:44:54 +0100 |
commit | 1557bb9d8f1f2f99aa5a594bdb1c7aa1c7546b97 (patch) | |
tree | 099642865697f5431762e79420b1b99cf6c5c462 /lisp/emacs-lisp | |
parent | 22e8c679ee6e09a864725e42ffd4df014fbdca31 (diff) | |
download | emacs-1557bb9d8f1f2f99aa5a594bdb1c7aa1c7546b97.tar.gz emacs-1557bb9d8f1f2f99aa5a594bdb1c7aa1c7546b97.tar.bz2 emacs-1557bb9d8f1f2f99aa5a594bdb1c7aa1c7546b97.zip |
; Rename 'package-vc-link-directory' to '-install-from-checkout'
* doc/emacs/package.texi (Fetching Package Sources): Rename instances
* etc/NEWS: Rename instances.
* lisp/emacs-lisp/package-vc.el (package-vc-link-directory): Rename to
'package-vc-install-from-checkout'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package-vc.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index 96cf7bb4666..ae0f7e0ee14 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -28,8 +28,8 @@ ;; aren't interested in activating a package, you can use ;; `package-vc-checkout' instead, which will prompt you for a target ;; directory. If you wish to re-use an existing checkout, the command -;; `package-vc-link-directory' will create a symbolic link and prepare -;; the package. +;; `package-vc-install-from-checkout' will create a symbolic link and +;; prepare the package. ;; ;; If you make local changes that you wish to share with an upstream ;; maintainer, the command `package-vc-prepare-patch' can prepare @@ -665,7 +665,7 @@ for the last released version of the package." (find-file directory))) ;;;###autoload -(defun package-vc-link-directory (dir name) +(defun package-vc-install-from-checkout (dir name) "Set up the package NAME in DIR by linking it into the ELPA directory. Interactively, prompt the user for DIR, which should be a directory under version control, typically one created by `package-vc-checkout'. |