On 2008-04-30 08:45 +0100, Thien-Thi Nguyen wrote:
> Greetings earthlings,
>
> That groovy mic-paren.el is under new manglement (has changed
> maintainers)!  Let's hope the new bugs won't flummox it overmuch.
> Thanks go to Mikael Sjödin for writing mic-paren.el, and Klaus Berndl
> (and others) for their prior maintenance efforts.  Changes since 3.7:
>
>   - Maintainership (crassly) grabbed by ttn.
>   - License now GPLv3+.
>   - Byte-compiler warnings eliminated; if you see one, tell me!
>   - Dropped funcs: mic-char-bytes, mic-char-before.
>   - Docstrings, messages, comments revamped.
>
> Please find version 3.8 in dir:
>
>   http://www.gnuvola.org/software/j/mic-paren/
>
> I tried to upload a copy to the Emacs Wiki, but it didn't stick for
> some reason.  Hopefully someone can finesses that better than me.
>
> thi

mic-paren-nolog-message does not actually do what its name suggests in
GNU Emacs i.e. the msg should not be logged to *Message* buffer. The
following patch fixes it.

--- a/mic-paren.el.gz
+++ b/mic-paren.el.gz
@@ -684,7 +684,7 @@
         (display-message 'no-log msg)
         (clear-message 'no-log))
     (define-mic-paren-nolog-message
-      (message "%s" msg)
+      (let (message-log-max) (message "%s" msg))
       (message nil))))

 ;;;
 ======================================================================

Diff finished.  Mon Mar  1 10:06:18 2010

Best wishes,

Leo


_______________________________________________
gnu-emacs-sources mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnu-emacs-sources

Reply via email to