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

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

[elpa] externals/filechooser fbabc1eaab: Fix mapconcat error


From: ELPA Syncer
Subject: [elpa] externals/filechooser fbabc1eaab: Fix mapconcat error
Date: Tue, 6 Feb 2024 18:58:13 -0500 (EST)

branch: externals/filechooser
commit fbabc1eaab111349819a454cda2c4d01993dde1e
Author: Rahguzar <rahguzar@zohomail.eu>
Commit: Rahguzar <rahguzar@zohomail.eu>

    Fix mapconcat error
    
    Co-authored-by: Steven Allen <steven@stebalien.com>
    
    Due to conversion from rx-to-string
---
 filechooser.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/filechooser.el b/filechooser.el
index 771e1a4dfc..5f884c6903 100644
--- a/filechooser.el
+++ b/filechooser.el
@@ -5,7 +5,7 @@
 ;; Author: rahguzar <rahguzar@zohomail.eu>
 ;; Maintainer: rahguzar <rahguzar@zohomail.eu>
 ;; Created: May 20, 2023
-;; Version: 0.1.0
+;; Version: 0.1.1
 ;; Keywords: convenience files tools unix
 ;; Homepage: https://codeberg.org/rahguzar/filechooser
 ;; Package-Requires: ((emacs "28.1") (compat "29.1"))
@@ -167,7 +167,7 @@ With prefix ARG toggle multiple filters using 
`completing-read-multiple'."
         (current (caar (alist-get "current_filter" opts nil nil #'equal)))
         (regex-filters)
         (glob-to-regexp (lambda (cell) (if (eq  0 (car cell))
-                                      `(regexp ,(wildcard-to-regexp (nth 1 
cell)))
+                                      (wildcard-to-regexp (nth 1 cell))
                                     ""))))
     (unless (alist-get (car current) filters nil nil #'equal)
       (when current (push current filters)))



reply via email to

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