Function: syntax-propertize-multiline
syntax-propertize-multiline is a byte-compiled function defined in
syntax.el.gz.
Signature
(syntax-propertize-multiline BEG END)
Documentation
Let syntax-propertize pay attention to the syntax-multiline property.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/syntax.el.gz
(defun syntax-propertize-multiline (beg end)
"Let `syntax-propertize' pay attention to the syntax-multiline property."
(when (and (> beg (point-min))
(get-text-property (1- beg) 'syntax-multiline))
(setq beg (or (previous-single-property-change beg 'syntax-multiline)
(point-min))))
;;
(when (get-text-property end 'syntax-multiline)
(setq end (or (text-property-any end (point-max)
'syntax-multiline nil)
(point-max))))
(cons beg end))