Function: sgml-syntax-propertize

sgml-syntax-propertize is a byte-compiled function defined in sgml-mode.el.gz.

Signature

(sgml-syntax-propertize START END &optional RULES-FUNCTION)

Documentation

Syntactic keywords for sgml-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defun sgml-syntax-propertize (start end &optional rules-function)
  "Syntactic keywords for `sgml-mode'."
  (setq sgml--syntax-propertize-ppss (cons start (syntax-ppss start)))
  (when (>= (cadr sgml--syntax-propertize-ppss) 0)
    (sgml-syntax-propertize-inside end)
    (funcall (or rules-function sgml--syntax-propertize) (point) end)
    ;; Catch any '>' after the last quote.
    (sgml--syntax-propertize-ppss end)))