]> git.eshelyaron.com Git - emacs.git/commitdiff
Make desktop.el use local-minor-modes when saving
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 17 Apr 2022 18:21:40 +0000 (20:21 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 17 Apr 2022 18:23:05 +0000 (20:23 +0200)
* lisp/desktop.el (desktop-buffer-info): Use a more reliable way
to get minor modes (bug#29972).

lisp/desktop.el

index 7e3d66bdf1f6d5865fd472610736cfcb9d641026..cd581e028ba67aa42b3e04cfcb14ecd5634a5773 100644 (file)
@@ -847,15 +847,16 @@ buffer, which is (in order):
     ,(buffer-name)
     ,major-mode
     ;; minor modes
-    ,(let (ret)
-       (dolist (minor-mode (mapcar #'car minor-mode-alist) ret)
-         (and (boundp minor-mode)
-              (symbol-value minor-mode)
-              (let* ((special (assq minor-mode desktop-minor-mode-table))
-                     (value (cond (special (cadr special))
-                                  ((get minor-mode :minor-mode-function))
-                                  ((functionp minor-mode) minor-mode))))
-                (when value (cl-pushnew value ret))))))
+    ,(seq-filter
+      (lambda (minor-mode)
+        ;; Just two sanity checks.
+        (and (boundp minor-mode)
+             (symbol-value minor-mode)
+             (let ((special
+                    (assq minor-mode desktop-minor-mode-table)))
+               (or (not special)
+                   (cadr special)))))
+      local-minor-modes)
     ;; point and mark, and read-only status
     ,(point)
     ,(list (mark t) mark-active)