]> git.eshelyaron.com Git - emacs.git/commitdiff
(show-paren-highlight-openparen): New var.
authorJuri Linkov <juri@jurta.org>
Tue, 27 Apr 2004 06:43:42 +0000 (06:43 +0000)
committerJuri Linkov <juri@jurta.org>
Tue, 27 Apr 2004 06:43:42 +0000 (06:43 +0000)
(show-paren-function): Turn on openparen highlighting when
matching forward if show-paren-highlight-openparen is non-nil.

lisp/paren.el

index ab3efe10ba5c475c47d86fb0564b56d9763b1428..6c5f9dece99a6a37c0b2746046dae9ed801b8310 100644 (file)
@@ -91,6 +91,9 @@ otherwise)."
   :group 'faces
   :group 'paren-showing)
 
+(defvar show-paren-highlight-openparen t
+  "*Non-nil turns on openparen highlighting when matching forward.")
+
 (defvar show-paren-idle-timer nil)
 
 ;;;###autoload
@@ -195,7 +198,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time."
          ;; If matching forward, and the openparen is unbalanced,
          ;; highlight the paren at point to indicate misbalance.
          ;; Otherwise, turn off any such highlighting.
-         (if (and (= dir 1) (integerp pos))
+         (if (and (not show-paren-highlight-openparen) (= dir 1) (integerp pos))
              (when (and show-paren-overlay-1
                         (overlay-buffer show-paren-overlay-1))
                (delete-overlay show-paren-overlay-1))