diff options
| author | Richard M. Stallman | 1993-11-20 05:50:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-20 05:50:01 +0000 |
| commit | 34d51d087dba9da22bcf0eeab2909972756ef894 (patch) | |
| tree | b85569acd40863f4f421fc39500c2aae415ccd68 | |
| parent | 398b666f479a3fdb709d735a664ecfcf0b91e2d7 (diff) | |
| download | emacs-34d51d087dba9da22bcf0eeab2909972756ef894.tar.gz emacs-34d51d087dba9da22bcf0eeab2909972756ef894.zip | |
(tags-complete-tag): Bind enable-recursive-minibuffers to t.
| -rw-r--r-- | lisp/progmodes/etags.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 4b2e49bad9f..9d6ec89d036 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -562,7 +562,9 @@ Assumes the tags table is the current buffer." | |||
| 562 | ;; but builds tags-completion-table on demand. | 562 | ;; but builds tags-completion-table on demand. |
| 563 | (defun tags-complete-tag (string predicate what) | 563 | (defun tags-complete-tag (string predicate what) |
| 564 | (save-excursion | 564 | (save-excursion |
| 565 | (visit-tags-table-buffer) | 565 | ;; If we need to ask for the tag table, allow that. |
| 566 | (let ((enable-recursive-minibuffers t)) | ||
| 567 | (visit-tags-table-buffer)) | ||
| 566 | (if (eq what t) | 568 | (if (eq what t) |
| 567 | (all-completions string (tags-completion-table) predicate) | 569 | (all-completions string (tags-completion-table) predicate) |
| 568 | (try-completion string (tags-completion-table) predicate)))) | 570 | (try-completion string (tags-completion-table) predicate)))) |