Function: xmltok-handle-nested-entity
xmltok-handle-nested-entity is a byte-compiled function defined in
xmltok.el.gz.
Signature
(xmltok-handle-nested-entity START END)
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/xmltok.el.gz
(defun xmltok-handle-nested-entity (start end)
(let* ((name-def (assoc (buffer-substring-no-properties start end)
xmltok-dtd))
(def (cdr name-def)))
(when (stringp def)
(xmltok-parse-entity name-def)
(setq def (cdr name-def)))
(setq xmltok-replacement
(cond ((null name-def)
(if (eq (car xmltok-dtd) t)
nil
'not-well-formed))
((eq def 'unparsed) 'not-well-formed)
(t def)))))