Function: EMIT-CLOSE-TAG

Documentation

Emit the code required to print a close tag whose name is NAME.

Source

(defun emit-close-tag (name)
  "Emit the code required to print a close tag whose name is NAME."
  (decf %yaclml-indentation-depth% 2)
  (emit-princ "</" name)
  (emit-indentation)
  (emit-princ ">"))
Source Context