From 34d51d087dba9da22bcf0eeab2909972756ef894 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 20 Nov 1993 05:50:01 +0000 Subject: [PATCH] (tags-complete-tag): Bind enable-recursive-minibuffers to t. --- lisp/progmodes/etags.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)))) -- 2.39.5