Function: xmltok-define-entity

xmltok-define-entity is a byte-compiled function defined in xmltok.el.gz.

Signature

(xmltok-define-entity NAME VALUE)

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/xmltok.el.gz
(defun xmltok-define-entity (name value)
  (when (and (or (not xmltok-had-param-entity-ref)
		 xmltok-standalone)
	     (not (assoc name xmltok-dtd)))
    (setq xmltok-dtd
	  (cons (cons name value) xmltok-dtd))))