commit ae825fca7f090e91869715058c412277aa375087
parent cdf3f2a8020eb7c9f820eb51106562814a8e38e3
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date: Sat, 31 Oct 2015 16:10:10 +0530
Do not echo in isearch-mode
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/emojify.el b/emojify.el
@@ -321,7 +321,9 @@ OLD-POINT and NEW-POINT are the point before entering and after entering."
(match-beginning (plist-get text-props 'emojify-start))
(match-end (plist-get text-props 'emojify-end)))
(when (eq buffer (current-buffer))
- (cond ((eq emojify-point-entered-behaviour 'echo)
+ (cond ((and (eq emojify-point-entered-behaviour 'echo)
+ ;; Do not echo in isearch-mode
+ (not isearch-mode))
(message (substring-no-properties match)))
((eq emojify-point-entered-behaviour 'uncover)
(progn (emojify-undisplay-emojis-in-region match-beginning match-end)