diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-04-27 18:54:39 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-04-27 18:54:39 +0000 |
commit | a78858167035fd6a587fd9d9775f4ddbe56b343f (patch) | |
tree | 3bfa5dc6020734e38742791b69c01e5e3c78d5ce | |
parent | b20e965eff598c3c26fa342fbf21ce9634925ac9 (diff) | |
download | emacs-a78858167035fd6a587fd9d9775f4ddbe56b343f.tar.gz |
(etags-tags-completion-table): Add a `:'
in the second character class of the regexp.
-rw-r--r-- | lisp/progmodes/etags.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 0659c8a5106..29cac6ee1c2 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) |