1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(tags-table-check-computed-list): Call tags-verify-table on existing

buffers.
This commit is contained in:
Roland McGrath 1994-09-23 17:29:55 +00:00
parent 2687aeb390
commit c49a777a36

View File

@ -223,7 +223,11 @@ file the tag was in."
(while tables
(setq computed (cons (car tables) computed)
table-buffer (get-file-buffer (car tables)))
(if table-buffer
(if (and table-buffer
;; There is a buffer visiting the file. Now make sure
;; it is initialized as a tag table buffer.
(save-excursion
(tags-verify-table (buffer-file-name table-buffer))))
(save-excursion
(set-buffer table-buffer)
(if (tags-included-tables)