aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-11-17 22:27:47 +0000
committerRichard M. Stallman1995-11-17 22:27:47 +0000
commitc20032c4e8ed922921b2fd903221fe3dfb12b35f (patch)
tree20156cbd09347bb3dffe4a8ca1b18b539c870717
parenta339bbef091e4cb78f7798c1a1bb5005a3df877b (diff)
downloademacs-c20032c4e8ed922921b2fd903221fe3dfb12b35f.tar.gz
emacs-c20032c4e8ed922921b2fd903221fe3dfb12b35f.zip
(next-file): Make interactive arg t if had any prefix arg.
-rw-r--r--lisp/progmodes/etags.el3
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
1248 1248
1249Value is nil if the file was already visited; 1249Value is nil if the file was already visited;
1250if the file was newly read in, the value is the filename." 1250if the file was newly read in, the value is the filename."
1251 (interactive "P") 1251 ;; Make the interactive arg t if there was any prefix arg.
1252 (interactive (list (if current-prefix-arg t)))
1252 (cond ((not initialize) 1253 (cond ((not initialize)
1253 ;; Not the first run. 1254 ;; Not the first run.
1254 ) 1255 )