diff options
| -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." | |||
| 1095 | ;; If there are no files that match the default pattern ChangeLog.[0-9], | 1095 | ;; If there are no files that match the default pattern ChangeLog.[0-9], |
| 1096 | ;; return the current buffer to force isearch wrapping to its beginning. | 1096 | ;; return the current buffer to force isearch wrapping to its beginning. |
| 1097 | ;; If file is nil, multi-isearch-search-fun will signal "end of multi". | 1097 | ;; If file is nil, multi-isearch-search-fun will signal "end of multi". |
| 1098 | (if (file-exists-p file) | 1098 | (if (and file (file-exists-p file)) |
| 1099 | (find-file-noselect file) | 1099 | (find-file-noselect file) |
| 1100 | (current-buffer)))) | 1100 | (current-buffer)))) |
| 1101 | 1101 | ||