emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 0b77909cac 39/42: Avoid duplicate source packages in 'package-ali


From: Philip Kaludercic
Subject: master 0b77909cac 39/42: Avoid duplicate source packages in 'package-alist'
Date: Thu, 17 Nov 2022 14:56:25 -0500 (EST)

branch: master
commit 0b77909cac1ef6705dfb1d4aed0d64ccc55864cf
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Avoid duplicate source packages in 'package-alist'
    
    * lisp/emacs-lisp/package-vc.el (package-vc--unpack-1): Remove all
    other source packages before installing the new package description.
---
 lisp/emacs-lisp/package-vc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el
index 8811f9ac7b..7edecddaa1 100644
--- a/lisp/emacs-lisp/package-vc.el
+++ b/lisp/emacs-lisp/package-vc.el
@@ -390,7 +390,7 @@ documentation and marking the package as installed."
   ;; Remove any previous instance of PKG-DESC from `package-alist'
   (let ((pkgs (assq (package-desc-name pkg-desc) package-alist)))
     (when pkgs
-      (setf (cdr pkgs) (delq pkg-desc (cdr pkgs)))))
+      (setf (cdr pkgs) (seq-remove #'package-vc-p (cdr pkgs)))))
 
   ;; In case the package was installed directly from source, the
   ;; dependency list wasn't know beforehand, and they might have



reply via email to

[Prev in Thread] Current Thread [Next in Thread]