1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 05:21:37 -07:00

(visit-tags-table-buffer): Don't look in list for tags-file-name if nil.

This commit is contained in:
Roland McGrath 1992-12-21 19:13:11 +00:00
parent b6176f6493
commit 4d997d08f1

View file

@ -365,7 +365,8 @@ Returns t if it visits a tags table, or nil if there are no more in the list."
tags-table-list)))
;; Fourth, use the user variable tags-file-name, if it is not
;; already in tags-table-list.
(and (not (tags-table-list-member tags-file-name))
(and tags-file-name
(not (tags-table-list-member tags-file-name))
tags-file-name)
;; Fifth, use the user variable giving the table list.
(car tags-table-list)