Variable: show-paren-data-function

show-paren-data-function is a variable defined in paren.el.gz.

Value

show-paren--default

Documentation

Function to find the opener/closer "near" point and its match.

The function is called with no argument and should return either nil if there's no opener/closer near point, or a list of the form
(HERE-BEG HERE-END THERE-BEG THERE-END MISMATCH)
Where HERE-BEG..HERE-END is expected to be near point.

Source Code

;; Defined in /usr/src/emacs/lisp/paren.el.gz
(defvar show-paren-data-function #'show-paren--default
  "Function to find the opener/closer \"near\" point and its match.
The function is called with no argument and should return either nil
if there's no opener/closer near point, or a list of the form
\(HERE-BEG HERE-END THERE-BEG THERE-END MISMATCH)
Where HERE-BEG..HERE-END is expected to be near point.")