diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-09-13 15:23:03 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-09-13 15:23:03 +0000 |
commit | a117eaee5e424ec2a4a1845c6d73bb4fff4cfb09 (patch) | |
tree | 6bc753ac5423522cc9ff7dd4b4724da9b64813c9 | |
parent | 05edf8bd682f1f753af8a8312117b46ab09ff136 (diff) | |
download | emacs-a117eaee5e424ec2a4a1845c6d73bb4fff4cfb09.tar.gz emacs-a117eaee5e424ec2a4a1845c6d73bb4fff4cfb09.tar.bz2 emacs-a117eaee5e424ec2a4a1845c6d73bb4fff4cfb09.zip |
(blink-matching-open): Don't log paren matching
messages in *Messages*.
-rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 6ac05b42179..c5fe25ebe07 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3322,7 +3322,8 @@ when it is off screen)." (matching-paren (char-after blinkpos)))))) (if mismatch (setq blinkpos nil)) (if blinkpos - (progn + ;; Don't log messages about paren matching. + (let (message-log-max) (goto-char blinkpos) (if (pos-visible-in-window-p) (and blink-matching-paren-on-screen |