aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-04-27 18:54:39 +0000
committerGerd Moellmann <[email protected]>2000-04-27 18:54:39 +0000
commita78858167035fd6a587fd9d9775f4ddbe56b343f (patch)
tree3bfa5dc6020734e38742791b69c01e5e3c78d5ce /lisp
parentb20e965eff598c3c26fa342fbf21ce9634925ac9 (diff)
(etags-tags-completion-table): Add a `:'
in the second character class of the regexp.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/etags.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 0659c8a510..29cac6ee1c 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1155,7 +1155,7 @@ where they were found."
;; \6 is the line to start searching at;
;; \7 is the char to start searching at.
(while (re-search-forward
- "^\\(\\([^\177]+[^-a-zA-Z0-9_+*$\177]+\\)?\
+ "^\\(\\([^\177]+[^-a-zA-Z0-9_+*$:\177]+\\)?\
\\([-a-zA-Z0-9_+*$?:]+\\)[^-a-zA-Z0-9_+*$?:\177]*\\)\177\
\\(\\([^\n\001]+\\)\001\\)?\\([0-9]+\\)?,\\([0-9]+\\)?\n"
nil t)