1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Forgot docstring on xml-escape-string

This commit is contained in:
Mark A. Hershberger 2007-12-18 03:29:10 +00:00
parent 7731c9f401
commit a1884c78c4

View file

@ -845,6 +845,8 @@ The first line is indented with the optional INDENT-STRING."
(defalias 'xml-print 'xml-debug-print)
(defun xml-escape-string (string)
"Return the string with entity substitutions made from
xml-entity-alist."
(mapconcat (lambda (byte)
(let ((char (char-to-string byte)))
(if (rassoc char xml-entity-alist)