summaryrefslogtreecommitdiff
path: root/helm-regexp.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-09-25 12:44:15 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-09-25 12:44:15 +0200
commit58889321b814eddad73203cf3f63a2327f45d5fb (patch)
treeaef53cfc6cffd6a0ebf27d4ca1a828efb06bb59f /helm-regexp.el
parent16ccdda0e5207d9a3664dd0853c0fefac3457f17 (diff)
Allow migemo+regex in helm-moccur-action (#1175 #1185) from momomo5717.
* helm-regexp.el (helm-moccur-action): Use helm-mm-migemo-forward.
Diffstat (limited to 'helm-regexp.el')
-rw-r--r--helm-regexp.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/helm-regexp.el b/helm-regexp.el
index da4fcf94..d9890abc 100644
--- a/helm-regexp.el
+++ b/helm-regexp.el
@@ -24,7 +24,6 @@
(require 'helm-plugin)
(declare-function helm-mm-split-pattern "helm-multi-match")
-(declare-function migemo-forward "ext:migemo.el")
(defgroup helm-regexp nil
@@ -248,7 +247,7 @@ arg METHOD can be one of buffer, buffer-other-window, buffer-other-frame."
when (save-excursion
(condition-case _err
(if helm-migemo-mode
- (migemo-forward reg (point-at-eol) t)
+ (helm-mm-migemo-forward reg (point-at-eol) t)
(re-search-forward reg (point-at-eol) t))
(invalid-regexp nil)))
collect (match-beginning 0) into pos-ls