emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/marginalia 331b24a 093/241: check default-boundp too


From: Stefan Monnier
Subject: [elpa] externals/marginalia 331b24a 093/241: check default-boundp too
Date: Fri, 28 May 2021 20:49:03 -0400 (EDT)

branch: externals/marginalia
commit 331b24ab99cf048ba2320759beb6c6ee1a515c9b
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    check default-boundp too
---
 marginalia.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/marginalia.el b/marginalia.el
index 82e0526..5c506d9 100644
--- a/marginalia.el
+++ b/marginalia.el
@@ -343,7 +343,7 @@ a face"
     (when (boundp s)
       (concat
        (if (custom-variable-p s) "u" "v")
-       (when (and (boundp s) (not (equal (symbol-value s) (default-value s)))) 
"*")))
+       (when (and (boundp s) (default-boundp s) (not (equal (symbol-value s) 
(default-value s)))) "*")))
     (when (facep s) "a")
     (when (and (fboundp 'cl-find-class) (cl-find-class s)) "t"))))
 



reply via email to

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