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

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

[nongnu] elpa/helm b6e382861c 2/4: Fix error in exact search fn


From: ELPA Syncer
Subject: [nongnu] elpa/helm b6e382861c 2/4: Fix error in exact search fn
Date: Thu, 7 Sep 2023 12:59:36 -0400 (EDT)

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

    Fix error in exact search fn
---
 helm-multi-match.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-multi-match.el b/helm-multi-match.el
index e4d143e630..da2a25319c 100644
--- a/helm-multi-match.el
+++ b/helm-multi-match.el
@@ -108,7 +108,7 @@ If GREP-SPACE is used translate escaped space to \"\\s\" 
instead of \"\\s-\"."
 
 (defun helm-mm-exact-search (pattern &rest _ignore)
   (and (search-forward (helm-mm-exact-get-pattern pattern) nil t)
-       (forward-line -1)))
+       (forward-line 1)))
 
 
 ;;; Prefix match



reply via email to

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