diff options
| -rw-r--r-- | lisp/progmodes/etags.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 8ffa931592b..04932d29c4e 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -365,7 +365,8 @@ Returns t if it visits a tags table, or nil if there are no more in the list." | |||
| 365 | tags-table-list))) | 365 | tags-table-list))) |
| 366 | ;; Fourth, use the user variable tags-file-name, if it is not | 366 | ;; Fourth, use the user variable tags-file-name, if it is not |
| 367 | ;; already in tags-table-list. | 367 | ;; already in tags-table-list. |
| 368 | (and (not (tags-table-list-member tags-file-name)) | 368 | (and tags-file-name |
| 369 | (not (tags-table-list-member tags-file-name)) | ||
| 369 | tags-file-name) | 370 | tags-file-name) |
| 370 | ;; Fifth, use the user variable giving the table list. | 371 | ;; Fifth, use the user variable giving the table list. |
| 371 | (car tags-table-list) | 372 | (car tags-table-list) |