# HG changeset patch # User Richard M. Stallman # Date 816647267 0 # Node ID 38c6a718abb88474fba6572dc63bd889454aed03 # Parent 197015b859ab4f20a67c6ed406a4ef3d8c70d9a0 (next-file): Make interactive arg t if had any prefix arg. diff -r 197015b859ab -r 38c6a718abb8 lisp/progmodes/etags.el --- a/lisp/progmodes/etags.el Fri Nov 17 17:40:02 1995 +0000 +++ b/lisp/progmodes/etags.el Fri Nov 17 22:27:47 1995 +0000 @@ -1248,7 +1248,8 @@ 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. )