]> git.eshelyaron.com Git - emacs.git/commitdiff
Package archive location needs to be absolute filename
authordickmao <none>
Wed, 4 Aug 2021 08:50:38 +0000 (10:50 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 4 Aug 2021 08:50:38 +0000 (10:50 +0200)
* lisp/emacs-lisp/package.el (package--with-response-buffer-1):
Actually check that URL is absolute (bug#49788).

lisp/emacs-lisp/package.el

index f1daa8d124a5f6263b6f37942e8d3a4f7465f81b..37dcbe36c8b99713c7428f9681184fe10e58911f 100644 (file)
@@ -1366,11 +1366,9 @@ errors signaled by ERROR-FORM or by BODY).
                 (kill-buffer buffer)
                 (goto-char (point-min))))))
       (package--unless-error body
-        (let ((url (expand-file-name file url)))
-          (unless (file-name-absolute-p url)
-            (error "Location %s is not a url nor an absolute file name"
-                   url))
-          (insert-file-contents-literally url)))))
+        (unless (file-name-absolute-p url)
+          (error "Location %s is not a url nor an absolute file name" url))
+        (insert-file-contents-literally (expand-file-name file url)))))
 
 (define-error 'bad-signature "Failed to verify signature")