summaryrefslogtreecommitdiff
path: root/helm-dabbrev.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2018-07-29 07:34:55 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2018-07-29 07:34:55 +0200
commit7ed7a4c4c4b1cd422ffb9f9120891f438bdd7b39 (patch)
tree4aff200b3781fc887e952f59628a8dbdf0ab3cc5 /helm-dabbrev.el
parentf81fbcff230afb214bb562e383cb472be2265e80 (diff)
Fix *-dabbrev regexp
* helm-dabbrev.el (helm-dabbrev-separator-regexp): Do it.
Diffstat (limited to 'helm-dabbrev.el')
-rw-r--r--helm-dabbrev.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-dabbrev.el b/helm-dabbrev.el
index 49d53a52..6963472e 100644
--- a/helm-dabbrev.el
+++ b/helm-dabbrev.el
@@ -107,7 +107,7 @@ but the initial search for all candidates in buffer(s)."
(defvaralias 'helm-dabbrev--regexp 'helm-dabbrev-separator-regexp)
(make-obsolete-variable 'helm-dabbrev--regexp 'helm-dabbrev-separator-regexp "2.8.3")
;; Check for beginning of line should happen last (^\n\\|^).
-(defvar helm-dabbrev-separator-regexp "\\s-\\|\t\\|[(\[\{\"'`=<$;,@.#+]\\|\\s\\\\|^\n\\|^"
+(defvar helm-dabbrev-separator-regexp "\\s-\\|\t\\|[(\\[\\{\"'`=<$;,@.#+]\\|\\s\\\\|^\n\\|^"
"Regexp matching the start of a dabbrev candidate.")