diff options
| author | Philip Kaludercic | 2022-11-10 21:55:30 +0100 |
|---|---|---|
| committer | Philip Kaludercic | 2022-11-17 20:37:28 +0100 |
| commit | a6cd44734d33a37dfef2a989b79cba41da71e2f8 (patch) | |
| tree | 9da69df7ee42cc128ed926a71a90cf6f8352c31d | |
| parent | 348f7d263c56ad48e871b2901307684b5c49b149 (diff) | |
| download | emacs-a6cd44734d33a37dfef2a989b79cba41da71e2f8.tar.gz emacs-a6cd44734d33a37dfef2a989b79cba41da71e2f8.zip | |
Remove unused variable in 'package-vc--unpack'
* lisp/emacs-lisp/package-vc.el (package-vc--unpack): Remove 'url'.
| -rw-r--r-- | lisp/emacs-lisp/package-vc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index 70d9ac98d71..d9b335f1cff 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el | |||
| @@ -500,7 +500,7 @@ PKG-SPEC is a package specification, a property list describing | |||
| 500 | how to fetch and build the package. See `package-vc--archive-spec-alist' | 500 | how to fetch and build the package. See `package-vc--archive-spec-alist' |
| 501 | for details. The optional argument REV specifies a specific revision to | 501 | for details. The optional argument REV specifies a specific revision to |
| 502 | checkout. This overrides the `:branch' attribute in PKG-SPEC." | 502 | checkout. This overrides the `:branch' attribute in PKG-SPEC." |
| 503 | (pcase-let* (((map :url :lisp-dir) pkg-spec) | 503 | (pcase-let* (((map :lisp-dir) pkg-spec) |
| 504 | (name (package-desc-name pkg-desc)) | 504 | (name (package-desc-name pkg-desc)) |
| 505 | (dirname (package-desc-full-name pkg-desc)) | 505 | (dirname (package-desc-full-name pkg-desc)) |
| 506 | (pkg-dir (expand-file-name dirname package-user-dir))) | 506 | (pkg-dir (expand-file-name dirname package-user-dir))) |