]> git.eshelyaron.com Git - emacs.git/commitdiff
(package-quickstart-refresh): Generate marginally more efficient code
authorAndrea Corallo <acorallo@gnu.org>
Wed, 22 Nov 2023 22:51:45 +0000 (17:51 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 22 Nov 2023 22:51:45 +0000 (17:51 -0500)
* lisp/emacs-lisp/package.el (package-quickstart-refresh): Include
only one copy of the file names.

lisp/emacs-lisp/package.el

index e23a61c58a426edbfd0f78af1a96638198e97191..d4bb6710283435999d6eefea843d422ac99f0324 100644 (file)
@@ -4612,8 +4612,8 @@ activations need to be changed, such as when `package-load-list' is modified."
                 (let ((load-suffixes '(".el" ".elc")))
                   (locate-library (package--autoloads-file-name pkg))))
                (pfile (prin1-to-string file)))
-          (insert "(let ((load-true-file-name " pfile ")\
-\(load-file-name " pfile "))\n")
+          (insert "(let* ((load-file-name " pfile ")\
+\(load-true-file-name load-file-name))\n")
           (insert-file-contents file)
           ;; Fixup the special #$ reader form and throw away comments.
           (while (re-search-forward "#\\$\\|^;\\(.*\n\\)" nil 'move)