summaryrefslogtreecommitdiff
path: root/lisp/xml.el
diff options
context:
space:
mode:
authorMark A. Hershberger <mah@everybody.org>2007-12-18 03:29:10 +0000
committerMark A. Hershberger <mah@everybody.org>2007-12-18 03:29:10 +0000
commita1884c78c4f672e78d82e91f7b5146ce04c16d93 (patch)
tree335666ceebf6cd58ea64e10c49d1536227eb935f /lisp/xml.el
parent7731c9f4012b43ee393417ae8cd541c5d89b172b (diff)
downloademacs-a1884c78c4f672e78d82e91f7b5146ce04c16d93.tar.gz
Forgot docstring on xml-escape-string
Diffstat (limited to 'lisp/xml.el')
-rw-r--r--lisp/xml.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/xml.el b/lisp/xml.el
index 20c582f06e8..62a95461446 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -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)