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

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

[nongnu] elpa/helm b4fe77174e 2/2: Fix issue #2526 for *-library affix f


From: ELPA Syncer
Subject: [nongnu] elpa/helm b4fe77174e 2/2: Fix issue #2526 for *-library affix fn as well
Date: Mon, 6 Nov 2023 03:59:57 -0500 (EST)

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

    Fix issue #2526 for *-library affix fn as well
---
 helm-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/helm-mode.el b/helm-mode.el
index 6a8ecfe975..c933760e88 100644
--- a/helm-mode.el
+++ b/helm-mode.el
@@ -1299,7 +1299,8 @@ is used."
     ;; unrelated files and directories coming in ... Even if this modify the
     ;; behavior of find-library-include-other-files remove them for the benefit
     ;; of everybody.
-    (unless (string-match "\\(\\.elc\\|/\\)\\'" comp)
+    (unless (or (string-match "\\(\\.elc\\|/\\)\\'" comp)
+                (string-match "\\`\\.#" comp)) ; (bug#2526)
       (let* ((sep (helm-make-separator comp))
              (path (or (assoc-default comp helm--locate-library-cache)
                        (let ((p (find-library-name comp)))



reply via email to

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