]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix byte-compilation warnings
authorEli Zaretskii <eliz@gnu.org>
Mon, 19 Dec 2022 17:34:36 +0000 (19:34 +0200)
committerEli Zaretskii <eliz@gnu.org>
Mon, 19 Dec 2022 17:34:36 +0000 (19:34 +0200)
* lisp/cus-edit.el (custom-reset-standard-save-and-update): Fix
byte-compilation warnings about using 'eq'.

lisp/cus-edit.el

index 8af4618dbd14708c7a3517f787e68c3d7ac1fdbf..65eb066a55458baacb363e6e611ffbea44d48808 100644 (file)
@@ -903,9 +903,9 @@ This also shows the saved values in the buffer."
 (defun custom-reset-standard-save-and-update ()
   "Save settings and redraw after erasing customizations."
   (when (or (and custom-reset-standard-variables-list
-                (not (eq custom-reset-standard-variables-list  '(t))))
+                (not (equal custom-reset-standard-variables-list  '(t))))
            (and custom-reset-standard-faces-list
-                (not (eq custom-reset-standard-faces-list '(t)))))
+                (not (equal custom-reset-standard-faces-list '(t)))))
     ;; Save settings to file.
     (custom-save-all)
     ;; Set state of and redraw variables.