diff options
| author | Juri Linkov <juri@linkov.net> | 2018-01-21 23:48:32 +0200 |
|---|---|---|
| committer | Juri Linkov <juri@linkov.net> | 2018-01-21 23:48:32 +0200 |
| commit | b3fb0d47c158cb0d1acdce5008628e1d1a337bbb (patch) | |
| tree | 77f66f346cc64916f83e9a607155ed94877c9ef8 /lisp/vc/add-log.el | |
| parent | afba4ccb8b8c6347a44efd0b9f4d6fb85756f85b (diff) | |
| download | emacs-b3fb0d47c158cb0d1acdce5008628e1d1a337bbb.tar.gz | |
* lisp/vc/add-log.el (change-log-next-buffer): Check file for nil.
Diffstat (limited to 'lisp/vc/add-log.el')
| -rw-r--r-- | lisp/vc/add-log.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/add-log.el b/lisp/vc/add-log.el index ec9299a947a..ea2e8ec874a 100644 --- a/lisp/vc/add-log.el +++ b/lisp/vc/add-log.el @@ -1095,7 +1095,7 @@ file were isearch was started." ;; If there are no files that match the default pattern ChangeLog.[0-9], ;; return the current buffer to force isearch wrapping to its beginning. ;; If file is nil, multi-isearch-search-fun will signal "end of multi". - (if (file-exists-p file) + (if (and file (file-exists-p file)) (find-file-noselect file) (current-buffer)))) |
