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

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

[elpa] master 808bb80 72/78: avy.el (avy--regex-candidates): Modify case


From: Oleh Krehel
Subject: [elpa] master 808bb80 72/78: avy.el (avy--regex-candidates): Modify case-fold-search condition
Date: Sat, 23 Jan 2016 14:00:26 +0000

branch: master
commit 808bb8011a694682f2900b32c133b231f2720edc
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    avy.el (avy--regex-candidates): Modify case-fold-search condition
    
    Fixes #126
---
 avy.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/avy.el b/avy.el
index 3cffb73..26a3cbc 100644
--- a/avy.el
+++ b/avy.el
@@ -595,7 +595,7 @@ When PRED is non-nil, it's a filter for matching point 
positions.
 When GROUP is non-nil, (BEG . END) should delimit that regex group."
   (setq group (or group 0))
   (let ((case-fold-search (or avy-case-fold-search
-                              (not (string= regex (upcase regex)))))
+                              (string= regex (downcase regex))))
         candidates)
     (avy-dowindows current-prefix-arg
       (dolist (pair (avy--find-visible-regions



reply via email to

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