Function: rst-font-lock-find-unindented-line-match

rst-font-lock-find-unindented-line-match is a byte-compiled function defined in rst.el.gz.

Signature

(rst-font-lock-find-unindented-line-match LIMIT)

Documentation

Set the match found earlier if match were found.

Match has been found by rst-font-lock-find-unindented-line-limit the first time called or no match is found. Return non-nil if match was found. _LIMIT is not used but mandated by the caller.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defun rst-font-lock-find-unindented-line-match (_limit)
  "Set the match found earlier if match were found.
Match has been found by `rst-font-lock-find-unindented-line-limit'
the first time called or no match is found.  Return non-nil if
match was found.  _LIMIT is not used but mandated by the caller."
  (when rst-font-lock-find-unindented-line-end
    (set-match-data
     (list rst-font-lock-find-unindented-line-begin
	   rst-font-lock-find-unindented-line-end))
    (put-text-property rst-font-lock-find-unindented-line-begin
		       rst-font-lock-find-unindented-line-end
		       'font-lock-multiline t)
    ;; Make sure this is called only once.
    (setq rst-font-lock-find-unindented-line-end nil)
    t))