diff options
| author | Roland McGrath | 1994-08-25 01:51:34 +0000 |
|---|---|---|
| committer | Roland McGrath | 1994-08-25 01:51:34 +0000 |
| commit | e99045bbcd46083d861905ec8dc7ffd38c5104e6 (patch) | |
| tree | 67a784f4d7d319fdd79e2662c66aad0c33e6dc3c | |
| parent | 59b49f63a6566b14cf8cef511dcde01800cca50b (diff) | |
| download | emacs-e99045bbcd46083d861905ec8dc7ffd38c5104e6.tar.gz emacs-e99045bbcd46083d861905ec8dc7ffd38c5104e6.zip | |
(tags-table-extend-computed-list): In loop processing list of included
tables to incorporate it, advance TABLES to its cdr at end of loop.
| -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." | |||
| 273 | ;; This table is not in core yet. Insert a placeholder | 273 | ;; This table is not in core yet. Insert a placeholder |
| 274 | ;; saying we must read it into core to check for included | 274 | ;; saying we must read it into core to check for included |
| 275 | ;; tables before searching the next table in the list. | 275 | ;; tables before searching the next table in the list. |
| 276 | (setq computed (cons t computed)))) | 276 | (setq computed (cons t computed))) |
| 277 | (setq tables (cdr tables))) | ||
| 277 | (setq computed (nreverse computed)) | 278 | (setq computed (nreverse computed)) |
| 278 | ;; COMPUTED now contains the list of included tables (and | 279 | ;; COMPUTED now contains the list of included tables (and |
| 279 | ;; tables included by them, etc.). Now splice this into the | 280 | ;; tables included by them, etc.). Now splice this into the |