diff options
| author | Dmitry Gutov <dgutov@yandex.ru> | 2015-08-01 14:40:14 +0300 |
|---|---|---|
| committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-08-01 14:40:55 +0300 |
| commit | bdd370bb5bd63139870b69775fd0bdfeeb81d5b5 (patch) | |
| tree | eefa251551b3f6dca230100feb00e7480dd8688c | |
| parent | 4da09534ee2d0a58f82f56163e09bd041adf933f (diff) | |
| download | emacs-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).
| -rw-r--r-- | 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 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) |
