[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm f7e0184c58 5/6: Fix prefix end in helm-mm-3-search-ba
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm f7e0184c58 5/6: Fix prefix end in helm-mm-3-search-base |
Date: |
Thu, 26 Jun 2025 07:00:37 -0400 (EDT) |
branch: elpa/helm
commit f7e0184c5877b03411c47cf1ccde1017f1a4b458
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix prefix end in helm-mm-3-search-base
---
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 99d61b69f3..556eb9cfa9 100644
--- a/helm-multi-match.el
+++ b/helm-multi-match.el
@@ -233,7 +233,7 @@ i.e (identity (re-search-forward \"foo\" (pos-eol) t)) =>
t."
(invalid-regexp nil))
for bol = (pos-bol)
for eol = (pos-eol)
- for end = (and prefix-search (match-end 0)) ; End of prefix.
+ for end = (and prefix-search (+ bol (match-end 0))) ; End of prefix.
;; Now search subsequent patterns on this line.
if (cl-loop for (pred . str) in (cdr pat)
for regexp = (if (and helm-mm--match-on-diacritics
- [nongnu] elpa/helm updated (36e5b767d9 -> e402aa7114), ELPA Syncer, 2025/06/26
- [nongnu] elpa/helm 26ef562202 2/6: Remove limitation on mm match fns for files, ELPA Syncer, 2025/06/26
- [nongnu] elpa/helm cbaed45fc1 1/6: helm-browse-project: handle nested projects (Hg inside Git or vice versa), ELPA Syncer, 2025/06/26
- [nongnu] elpa/helm e402aa7114 6/6: Merge pull request #2723 from taquangtrung/helm-browse-project, ELPA Syncer, 2025/06/26
- [nongnu] elpa/helm db1cdd2815 3/6: helm-mm-matching-method is no more a user var, ELPA Syncer, 2025/06/26
- [nongnu] elpa/helm 903f99bffd 4/6: helm-browse-project: refactor patch to use helm-aif, ELPA Syncer, 2025/06/26
- [nongnu] elpa/helm f7e0184c58 5/6: Fix prefix end in helm-mm-3-search-base,
ELPA Syncer <=