Function: mhtml-syntax-propertize
mhtml-syntax-propertize is a byte-compiled function defined in
mhtml-mode.el.gz.
Signature
(mhtml-syntax-propertize START END)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/mhtml-mode.el.gz
(defun mhtml-syntax-propertize (start end)
(let ((submode (get-text-property start 'mhtml-submode)))
;; First remove our special settings from the affected text. They
;; will be re-applied as needed.
(remove-list-of-text-properties start end
'(syntax-table local-map mhtml-submode))
(goto-char start)
(if submode
(mhtml--syntax-propertize-submode submode end)))
(sgml-syntax-propertize (point) end mhtml--syntax-propertize))