Mercurial > emacs
diff lisp/xml.el @ 87318:3b14ea2b1d8a
Forgot docstring on xml-escape-string
| author | Mark A. Hershberger <mah@everybody.org> |
|---|---|
| date | Tue, 18 Dec 2007 03:29:10 +0000 |
| parents | e8a485c87523 |
| children | 107ccd98fa12 56a72e2bd635 |
line wrap: on
line diff
--- a/lisp/xml.el Tue Dec 18 03:22:05 2007 +0000 +++ b/lisp/xml.el Tue Dec 18 03:29:10 2007 +0000 @@ -845,6 +845,8 @@ (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)
