]> git.eshelyaron.com Git - emacs.git/commitdiff
; Replace 'let*' with 'let' where possible
authorPhilip Kaludercic <philipk@posteo.net>
Wed, 2 Nov 2022 09:15:28 +0000 (10:15 +0100)
committerPhilip Kaludercic <philipk@posteo.net>
Wed, 2 Nov 2022 09:15:28 +0000 (10:15 +0100)
* lisp/emacs-lisp/package-vc.el (package-vc--select-packages): Do it.
(package-vc--read-archive-data): Do it.

lisp/emacs-lisp/package-vc.el

index 6134e6ed3da65ff9f7ed57158c175e9a57e56ec9..74f1c35ea6be63adfc89bb02caec17b01be22991 100644 (file)
@@ -116,7 +116,7 @@ symbol is used.  The value must be a member of
 It will ensure that all the packages are installed as source
 packages.  Finally SYM is set to VAL."
   (pcase-dolist (`(,(and (pred symbolp) name) . ,spec) val)
-    (let* ((pkg-desc (cadr (assoc name package-alist #'string=))))
+    (let ((pkg-desc (cadr (assoc name package-alist #'string=))))
       (unless (and name (package-installed-p name) (package-vc-p pkg-desc))
         (cond
          ((null spec)
@@ -232,9 +232,9 @@ return nil."
   "Update `package-vc-archive-spec-alist' with the contents of ARCHIVE.
 This function is meant to be used as a hook for
 `package--read-archive-hook'."
-  (let* ((contents-file (expand-file-name
-                         (format "archives/%s/elpa-packages.eld" archive)
-                         package-user-dir)))
+  (let ((contents-file (expand-file-name
+                        (format "archives/%s/elpa-packages.eld" archive)
+                        package-user-dir)))
     (when (file-exists-p contents-file)
       (with-temp-buffer
         (let ((coding-system-for-read 'utf-8))