aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1995-10-09 18:00:54 +0000
committerRoland McGrath1995-10-09 18:00:54 +0000
commitb1c7e43439f490bbc186a2f0137fc450819a9ea0 (patch)
treee21dbcea6801695778d54be136a75d3414804481
parentef9c36a54bfcc2981d2df590918607574e677434 (diff)
downloademacs-b1c7e43439f490bbc186a2f0137fc450819a9ea0.tar.gz
emacs-b1c7e43439f490bbc186a2f0137fc450819a9ea0.zip
(tags-table-check-computed-list): Map tags-expand-table-name over lists of
included tables.
-rw-r--r--lisp/progmodes/etags.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 6d4dc28c674..8650a995dd4 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -237,8 +237,9 @@ file the tag was in."
237 (if (tags-included-tables) 237 (if (tags-included-tables)
238 ;; Insert the included tables into the list we 238 ;; Insert the included tables into the list we
239 ;; are processing. 239 ;; are processing.
240 (setcdr tables (append (tags-included-tables) 240 (setcdr tables (nconc (mapcar 'tags-expand-table-name
241 (cdr tables))))) 241 (tags-included-tables))
242 (cdr tables)))))
242 ;; This table is not in core yet. Insert a placeholder 243 ;; This table is not in core yet. Insert a placeholder
243 ;; saying we must read it into core to check for included 244 ;; saying we must read it into core to check for included
244 ;; tables before searching the next table in the list. 245 ;; tables before searching the next table in the list.