aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1994-09-27 05:41:20 +0000
committerRoland McGrath1994-09-27 05:41:20 +0000
commit63af2693ce90cb3f1a08720b4f753ce99eedb4e7 (patch)
tree8716e20c9d4105dec8095ab5f4f571f242b617ca
parent7434015f911f2601f7734079aed47a66d7071e4a (diff)
downloademacs-63af2693ce90cb3f1a08720b4f753ce99eedb4e7.tar.gz
emacs-63af2693ce90cb3f1a08720b4f753ce99eedb4e7.zip
(etags-tags-completion-table): Allow ? and : in guessed tag names.
-rw-r--r--lisp/progmodes/etags.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 144e143090e..3f25c09a9e1 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -986,8 +986,8 @@ See documentation of variable `tags-file-name'."
986 ;; \6 is the line to start searching at; 986 ;; \6 is the line to start searching at;
987 ;; \7 is the char to start searching at. 987 ;; \7 is the char to start searching at.
988 (while (re-search-forward 988 (while (re-search-forward
989 "^\\(\\(.+[^-a-zA-Z0-9_$]+\\)?\\([-a-zA-Z0-9_$]+\\)\ 989 "^\\(\\(.+[^-a-zA-Z0-9_$]+\\)?\\([-a-zA-Z0-9_$?:]+\\)\
990\[^-a-zA-Z0-9_$]*\\)\177\\(\\([^\n\001]+\\)\001\\)?\ 990\[^-a-zA-Z0-9_$?:]*\\)\177\\(\\([^\n\001]+\\)\001\\)?\
991\\([0-9]+\\)?,\\([0-9]+\\)?\n" 991\\([0-9]+\\)?,\\([0-9]+\\)?\n"
992 nil t) 992 nil t)
993 (intern (if (match-beginning 5) 993 (intern (if (match-beginning 5)