Variable: show-paren--overlay
show-paren--overlay is a variable defined in paren.el.gz.
Value
#<overlay in no buffer>
Documentation
Overlay used to highlight the matching paren.
Source Code
;; Defined in /usr/src/emacs/lisp/paren.el.gz
(defvar show-paren--overlay
(let ((ol (make-overlay (point) (point) nil t))) (delete-overlay ol) ol)
"Overlay used to highlight the matching paren.")