changeset 11328:54e681a175d2

(list-tags): Delete call to select-tags-matched-file.
author Richard M. Stallman <rms@gnu.org>
date Sun, 09 Apr 1995 11:39:41 +0000
parents 76908dad81a4
children ecbfde696360
files lisp/progmodes/etags.el
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/etags.el	Sun Apr 09 09:42:28 1995 +0000
+++ b/lisp/progmodes/etags.el	Sun Apr 09 11:39:41 1995 +0000
@@ -1396,11 +1396,8 @@
     (setq file-list (tags-locate-file-in-tags-table filename
 						    (if next-match next-match nil)))
     (if file-list
-	(if (cdr file-list)
-	    (select-tags-matched-file file-list 'extract-pos-and-tag-from-sel
-				      'select-file-quit)
-	  (tags-list-functions-in-file (nth 1 (car file-list))
-				  (nth 2 (car file-list))))
+	(tags-list-functions-in-file (nth 1 (car file-list))
+				     (nth 2 (car file-list)))
       (message (format "%s not found in tags table" filename)))))
 
 ;;;###autoload