diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-11-27 15:53:16 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-11-27 15:53:16 +0000 |
commit | 92aa8a331eebc331d6914fa9474c2b05661ec832 (patch) | |
tree | bb3ecf76c65486e9dbde5833e0aeb73a5ab774ad /lisp/simple.el | |
parent | 181fcf00756de703951ef3c45a87d8fcd1068fae (diff) | |
download | emacs-92aa8a331eebc331d6914fa9474c2b05661ec832.tar.gz |
(blink-matching-open): Ignore `blink-matching-paren-on-screen' if
`show-paren-mode' is enabled.
(blink-matching-paren-on-screen): Update docstring.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 9b42c756991..36f6be2f10a 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4259,7 +4259,9 @@ of the buffer appears in the mode line." (defcustom blink-matching-paren-on-screen t "*Non-nil means show matching open-paren when it is on screen. If nil, means don't show it (but the open-paren can still be shown -when it is off screen)." +when it is off screen). + +This variable is ignored if `show-paren-mode' is enabled." :type 'boolean :group 'paren-blinking) @@ -4328,10 +4330,11 @@ If nil, search stops at the beginning of the accessible portion of the buffer." ((pos-visible-in-window-p blinkpos) ;; Matching open within window, temporarily move to blinkpos but only ;; if `blink-matching-paren-on-screen' is non-nil. - (when blink-matching-paren-on-screen - (save-excursion - (goto-char blinkpos) - (sit-for blink-matching-delay)))) + (and blink-matching-paren-on-screen + (not show-paren-mode) + (save-excursion + (goto-char blinkpos) + (sit-for blink-matching-delay)))) (t (save-excursion (goto-char blinkpos) |