diff options
author | Roland McGrath <roland@gnu.org> | 1994-08-25 01:51:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-08-25 01:51:34 +0000 |
commit | b91a11e474ca30ae137b87a072ee2cfe39a431f2 (patch) | |
tree | 30262195115f75b3dfda2e51c13f21dfe3512ad1 /lisp | |
parent | fd67de59d8329ac7abb313f6fa153e8b7e81039a (diff) | |
download | emacs-b91a11e474ca30ae137b87a072ee2cfe39a431f2.tar.gz |
(tags-table-extend-computed-list): In loop processing list of included
tables to incorporate it, advance TABLES to its cdr at end of loop.
Diffstat (limited to 'lisp')
-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 ce75dfc3cca..58b53dc1d47 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -273,7 +273,8 @@ file the tag was in." ;; This table is not in core yet. Insert a placeholder ;; saying we must read it into core to check for included ;; tables before searching the next table in the list. - (setq computed (cons t computed)))) + (setq computed (cons t computed))) + (setq tables (cdr tables))) (setq computed (nreverse computed)) ;; COMPUTED now contains the list of included tables (and ;; tables included by them, etc.). Now splice this into the |