Function: rng-in-mixed-content-p

rng-in-mixed-content-p is a byte-compiled function defined in rng-nxml.el.gz.

Signature

(rng-in-mixed-content-p)

Documentation

Return non-nil if point is in mixed content.

Return nil only if point is definitely not in mixed content. If unsure, return non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-nxml.el.gz
(defun rng-in-mixed-content-p ()
  "Return non-nil if point is in mixed content.
Return nil only if point is definitely not in mixed content.
If unsure, return non-nil."
  (if (eq rng-current-schema rng-any-element)
      t
    (rng-set-state-after)
    (rng-match-mixed-text)))