summaryrefslogtreecommitdiff
path: root/helm-tags.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2014-07-30 17:07:07 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2014-07-30 17:07:07 +0200
commitd409fb2c388cf8db38a937e1de09ac25f79a28e3 (patch)
treeb221a97abd893510f40b1c7d83e4d0c95f41b9ab /helm-tags.el
parent96ef028b46b9191f94f5f09475a83c309794a097 (diff)
Use [:lower/upper:] in regexps (#563).
* helm-files.el: Do it. * helm-grep.el: Do it. * helm-locate.el: Do it. * helm-org.el: Do it. * helm-tags.el: Do it. * helm.el: Do it.
Diffstat (limited to 'helm-tags.el')
-rw-r--r--helm-tags.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-tags.el b/helm-tags.el
index c2047027..06d51dac 100644
--- a/helm-tags.el
+++ b/helm-tags.el
@@ -230,7 +230,7 @@ If no entry in cache, create one."
(cons f (helm-etags-mtime f))))))))))
(defun helm-etags-split-line (line)
- (let ((regexp "\\`\\([a-zA-Z]?:?.*?\\): \\(.*\\)"))
+ (let ((regexp "\\`\\([[:lower:][:upper:]]?:?.*?\\): \\(.*\\)"))
(when (string-match regexp line)
(cl-loop for n from 1 to 2 collect (match-string n line)))))