diff options
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 2b4a876e494..2f21bacbeec 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -1248,7 +1248,8 @@ Non-nil second argument NOVISIT means use a temporary buffer Value is nil if the file was already visited; if the file was newly read in, the value is the filename." - (interactive "P") + ;; Make the interactive arg t if there was any prefix arg. + (interactive (list (if current-prefix-arg t))) (cond ((not initialize) ;; Not the first run. ) |