emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master bdd370b 2/2: Don't pass NOVISIT to find-file


From: Dmitry Gutov
Subject: [Emacs-diffs] master bdd370b 2/2: Don't pass NOVISIT to find-file
Date: Sat, 01 Aug 2015 11:41:37 +0000

branch: master
commit bdd370bb5bd63139870b69775fd0bdfeeb81d5b5
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    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 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 04c3ce1..23f9370 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]