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

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

[elpa] externals/marginalia d4c2028: marginalia--symbol-class: Add symbo


From: ELPA Syncer
Subject: [elpa] externals/marginalia d4c2028: marginalia--symbol-class: Add symbol for autoloaded
Date: Fri, 16 Jul 2021 17:57:14 -0400 (EDT)

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

    marginalia--symbol-class: Add symbol for autoloaded
---
 marginalia.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/marginalia.el b/marginalia.el
index 70ae7c8..fea67a4 100644
--- a/marginalia.el
+++ b/marginalia.el
@@ -375,6 +375,7 @@ C interactive-only command
 m macro
 p pure
 s side-effect-free
+@ autoloaded
 ! advised
 - obsolete
 
@@ -400,6 +401,7 @@ t cl-type"
         ((commandp s) (if (get s 'interactive-only) "C" "c"))
         ((eq (car-safe (symbol-function s)) 'macro) "m")
         (t "f"))
+       (and (autoloadp (symbol-function s)) "@")
        (and (marginalia--advised s) "!")
        (and (get s 'byte-obsolete-info) "-")))
     (when (boundp s)



reply via email to

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