|
| From: | Stefan Monnier |
| Subject: | Re: Annoying paren match messages in minibuffer |
| Date: | Wed, 14 Jan 2009 09:01:57 -0500 |
| User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) |
>> An annoyance like you reported can be eliminated with the following
>> simple patch:
>>
>> - (message "Mismatched parentheses"))
>> + (if (window-minibuffer-p (selected-window))
>> + (minibuffer-message " [Mismatched parentheses]")
>> + (message "Mismatched parentheses")))
> This patch looks like the right thing to do. Does anyone see any
> problems with this change?
Other than the fact that this should be done automatically by `message'?
No,
Stefan
| [Prev in Thread] | Current Thread | [Next in Thread] |