diff options
| -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)." | |||
| 3322 | (matching-paren (char-after blinkpos)))))) | 3322 | (matching-paren (char-after blinkpos)))))) |
| 3323 | (if mismatch (setq blinkpos nil)) | 3323 | (if mismatch (setq blinkpos nil)) |
| 3324 | (if blinkpos | 3324 | (if blinkpos |
| 3325 | (progn | 3325 | ;; Don't log messages about paren matching. |
| 3326 | (let (message-log-max) | ||
| 3326 | (goto-char blinkpos) | 3327 | (goto-char blinkpos) |
| 3327 | (if (pos-visible-in-window-p) | 3328 | (if (pos-visible-in-window-p) |
| 3328 | (and blink-matching-paren-on-screen | 3329 | (and blink-matching-paren-on-screen |