Function: sgml-font-lock-syntactic-face

sgml-font-lock-syntactic-face is a byte-compiled function defined in sgml-mode.el.gz.

Signature

(sgml-font-lock-syntactic-face STATE)

Documentation

font-lock-syntactic-face-function for sgml-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defun sgml-font-lock-syntactic-face (state)
  "`font-lock-syntactic-face-function' for `sgml-mode'."
  ;; Don't use string face outside of tags.
  (cond ((and (nth 9 state) (nth 3 state)) 'font-lock-string-face)
        ((nth 4 state) 'font-lock-comment-face)))