From: Dmitry Gutov Date: Sat, 1 Aug 2015 11:40:14 +0000 (+0300) Subject: Don't pass NOVISIT to find-file X-Git-Tag: emacs-25.0.90~1396 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bdd370bb5bd63139870b69775fd0bdfeeb81d5b5;p=emacs.git Don't pass NOVISIT to find-file * lisp/progmodes/etags.el (next-file): Don't pass NOVISIT to find-file (bug#21175). --- diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 04c3ce110f7..23f93707679 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el @@ -1754,7 +1754,7 @@ if the file was newly read in, the value is the filename." (with-current-buffer buffer (revert-buffer t t))) (if (not (and new novisit)) - (find-file next novisit) + (find-file next) ;; Like find-file, but avoids random warning messages. (switch-to-buffer (get-buffer-create " *next-file*")) (kill-all-local-variables)