From: Mark A. Hershberger Date: Tue, 18 Dec 2007 03:29:10 +0000 (+0000) Subject: Forgot docstring on xml-escape-string X-Git-Tag: emacs-pretest-23.0.90~8897 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a1884c78c4f672e78d82e91f7b5146ce04c16d93;p=emacs.git Forgot docstring on xml-escape-string --- 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)