diff options
author | Juri Linkov <juri@linkov.net> | 2018-04-23 01:10:49 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2018-04-23 01:10:49 +0300 |
commit | 7abd3f2dcf1d31e31f40ca817666e8f66a17284f (patch) | |
tree | 880199c2f4902fb30fab689dd7495106493a1a07 /lisp/info.el | |
parent | b26872a3b13f69f7f67a4964722d2ef155964c45 (diff) | |
download | emacs-7abd3f2dcf1d31e31f40ca817666e8f66a17284f.tar.gz |
Improve Isearch error handling
* lisp/isearch.el (isearch--momentary-message): Propertize message
suffix with minibuffer-prompt face.
(isearch--describe-regexp-mode): Do not omit description in case
of error in default non-literal search.
(isearch-message-prefix): Display “case-sensitive” in case of error.
(isearch-message-suffix): Propertize message suffix with
minibuffer-prompt face.
(isearch-search-fun-default): Remove unused error handling.
* lisp/vc/add-log.el (change-log-next-buffer): Better handle
errors during wrapping.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 0db84fb3dab..bbce55f6216 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2017,7 +2017,7 @@ If DIRECTION is `backward', search in the reverse direction." Info-isearch-initial-node bound (and found (> found opoint-min) (< found opoint-max))) - (signal 'user-search-failed (list regexp "(end of node)"))) + (signal 'user-search-failed (list regexp "end of node"))) ;; If no subfiles, give error now. (unless (or found Info-current-subfile) |