summaryrefslogtreecommitdiff
path: root/lisp/progmodes/etags.el
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2015-08-01 14:40:14 +0300
committerDmitry Gutov <dgutov@yandex.ru>2015-08-01 14:40:55 +0300
commitbdd370bb5bd63139870b69775fd0bdfeeb81d5b5 (patch)
treeeefa251551b3f6dca230100feb00e7480dd8688c /lisp/progmodes/etags.el
parent4da09534ee2d0a58f82f56163e09bd041adf933f (diff)
downloademacs-bdd370bb5bd63139870b69775fd0bdfeeb81d5b5.tar.gz
Don't pass NOVISIT to find-file
* lisp/progmodes/etags.el (next-file): Don't pass NOVISIT to find-file (bug#21175).
Diffstat (limited to 'lisp/progmodes/etags.el')
-rw-r--r--lisp/progmodes/etags.el2
1 files changed, 1 insertions, 1 deletions
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)