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:
parent
b6176f6493
commit
4d997d08f1
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue