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

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

[nongnu] elpa/helm 52ea8e924f 4/4: No need to quote list in *acase claus


From: ELPA Syncer
Subject: [nongnu] elpa/helm 52ea8e924f 4/4: No need to quote list in *acase clauses
Date: Wed, 4 Dec 2024 01:00:03 -0500 (EST)

branch: elpa/helm
commit 52ea8e924fdda0fd5b7a6d37d49f542a90dd58c8
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    No need to quote list in *acase clauses
---
 helm-files.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/helm-files.el b/helm-files.el
index 4526a05de5..556dfe7359 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -5447,9 +5447,9 @@ arg."
              (abbreviate-file-name candidate))
             (t (file-relative-name candidate)))
     (helm-acase prefarg
-      ('(4)  (abbreviate-file-name candidate))
-      ('(16) (file-relative-name candidate))
-      ('(64) (helm-basename candidate))
+      ((4)  (abbreviate-file-name candidate))
+      ((16) (file-relative-name candidate))
+      ((64) (helm-basename candidate))
       (t candidate))))
 
 (cl-defun helm-find-files-history (arg &key (comp-read t))



reply via email to

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