From: Gerd Moellmann Date: Thu, 27 Apr 2000 18:54:39 +0000 (+0000) Subject: (etags-tags-completion-table): Add a `:' X-Git-Tag: emacs-pretest-21.0.90~4117 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a78858167035fd6a587fd9d9775f4ddbe56b343f;p=emacs.git (etags-tags-completion-table): Add a `:' in the second character class of the regexp. --- 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)