emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Blinking paren won't hide minibuffer expression.


From: Michael Pontus
Subject: [PATCH] Blinking paren won't hide minibuffer expression.
Date: Sun, 12 Apr 2015 04:56:08 +0300

I would like to suggest a simple change that will prevent blinking
paren from momentarily hiding the expression that is being typed.
>From a97c6afed49843d4772ad3906b6a97efe39a756e Mon Sep 17 00:00:00 2001
From: myeffort <address@hidden>
Date: Sun, 12 Apr 2015 04:45:20 +0300
Subject: [PATCH] Blinking paren won't hide minibuffer expression.

---
 lisp/simple.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/simple.el b/lisp/simple.el
index 5185607..0c738ef 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -6987,7 +6987,7 @@ The function should return non-nil if the two tokens do 
not match.")
                     (buffer-substring blinkpos (1+ blinkpos))))
                   ;; There is nothing to show except the char itself.
                   (t (buffer-substring blinkpos (1+ blinkpos))))))
-            (message "Matches %s"
+            (minibuffer-message "Matches %s"
                      (substring-no-properties open-paren-line-string)))))))))
 
 (defvar blink-paren-function 'blink-matching-open
-- 
2.0.5


reply via email to

[Prev in Thread] Current Thread [Next in Thread]