aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-09 11:39:41 +0000
committerRichard M. Stallman1995-04-09 11:39:41 +0000
commitd437b3f6bcdf4ca2a8de80d3403b0962c074d35d (patch)
tree537e805c9d6f8d432ad24013ec09a8addb0bf407
parent5eabb4e7ee36930c22b209065f8256f817de6061 (diff)
downloademacs-d437b3f6bcdf4ca2a8de80d3403b0962c074d35d.tar.gz
emacs-d437b3f6bcdf4ca2a8de80d3403b0962c074d35d.zip
(list-tags): Delete call to select-tags-matched-file.
-rw-r--r--lisp/progmodes/etags.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index b06c2743ac2..68d56bca5d3 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -1396,11 +1396,8 @@ Searches only in \"tags-file-name\"."
1396 (setq file-list (tags-locate-file-in-tags-table filename 1396 (setq file-list (tags-locate-file-in-tags-table filename
1397 (if next-match next-match nil))) 1397 (if next-match next-match nil)))
1398 (if file-list 1398 (if file-list
1399 (if (cdr file-list) 1399 (tags-list-functions-in-file (nth 1 (car file-list))
1400 (select-tags-matched-file file-list 'extract-pos-and-tag-from-sel 1400 (nth 2 (car file-list)))
1401 'select-file-quit)
1402 (tags-list-functions-in-file (nth 1 (car file-list))
1403 (nth 2 (car file-list))))
1404 (message (format "%s not found in tags table" filename))))) 1401 (message (format "%s not found in tags table" filename)))))
1405 1402
1406;;;###autoload 1403;;;###autoload