diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-11-20 05:50:01 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-11-20 05:50:01 +0000 |
commit | 34d51d087dba9da22bcf0eeab2909972756ef894 (patch) | |
tree | b85569acd40863f4f421fc39500c2aae415ccd68 /lisp/progmodes | |
parent | 398b666f479a3fdb709d735a664ecfcf0b91e2d7 (diff) | |
download | emacs-34d51d087dba9da22bcf0eeab2909972756ef894.tar.gz |
(tags-complete-tag): Bind enable-recursive-minibuffers to t.
Diffstat (limited to 'lisp/progmodes')
-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." ;; but builds tags-completion-table on demand. (defun tags-complete-tag (string predicate what) (save-excursion - (visit-tags-table-buffer) + ;; If we need to ask for the tag table, allow that. + (let ((enable-recursive-minibuffers t)) + (visit-tags-table-buffer)) (if (eq what t) (all-completions string (tags-completion-table) predicate) (try-completion string (tags-completion-table) predicate)))) |