Function: rst-font-lock-extend-region-internal
rst-font-lock-extend-region-internal is a byte-compiled function
defined in rst.el.gz.
Signature
(rst-font-lock-extend-region-internal BEG END)
Documentation
Check the region BEG / END for being in the middle of a multi-line construct.
Return nil if not or a cons with new values for BEG / END.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defun rst-font-lock-extend-region-internal (beg end)
"Check the region BEG / END for being in the middle of a multi-line construct.
Return nil if not or a cons with new values for BEG / END."
(let ((nbeg (rst-font-lock-extend-region-extend beg -1))
(nend (rst-font-lock-extend-region-extend end 1)))
(if (or nbeg nend)
(cons (or nbeg beg) (or nend end)))))