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

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

[elpa] externals/pulsar e1ce78814c 02/10: Changed pulsar--find-fn-aliase


From: ELPA Syncer
Subject: [elpa] externals/pulsar e1ce78814c 02/10: Changed pulsar--find-fn-aliases to commandp to filter only interactive commands.
Date: Tue, 20 Aug 2024 12:58:57 -0400 (EDT)

branch: externals/pulsar
commit e1ce78814c8934bd3fa62ec2d271776db1dbe371
Author: shipmints <shipmints@gmail.com>
Commit: shipmints <shipmints@gmail.com>

    Changed pulsar--find-fn-aliases to commandp to filter only interactive 
commands.
---
 pulsar.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pulsar.el b/pulsar.el
index defdb95fd3..c984bc0d31 100644
--- a/pulsar.el
+++ b/pulsar.el
@@ -498,7 +498,7 @@ If FUNC is a function alias, return the function alias 
chain."
   (let ((aliases))
     (mapatoms (lambda (sym)
                 (when (and
-                       (fboundp sym)
+                       (commandp sym)
                        (memq (symbol-function sym) fns))
                   (push sym aliases))))
     aliases))



reply via email to

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