From bdd370bb5bd63139870b69775fd0bdfeeb81d5b5 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Sat, 1 Aug 2015 14:40:14 +0300 Subject: Don't pass NOVISIT to find-file * lisp/progmodes/etags.el (next-file): Don't pass NOVISIT to find-file (bug#21175). --- lisp/progmodes/etags.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/progmodes/etags.el') 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) -- cgit v1.2.1