diff lisp/xml.el @ 49065:265dc22fb2c0

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Mon, 06 Jan 2003 01:10:25 +0000
parents 466922eb2b8d
children 4d76986458e8
line wrap: on
line diff
--- a/lisp/xml.el	Mon Jan 06 01:08:31 2003 +0000
+++ b/lisp/xml.el	Mon Jan 06 01:10:25 2003 +0000
@@ -450,7 +450,7 @@
     (setq string (replace-match "'"  t nil string)))
   (while (string-match "&quot;" string)
     (setq string (replace-match "\"" t nil string)))
-  ;; do this last to avoid aliasing errors
+  ;; This goes last so it doesn't confuse the matches above.
   (while (string-match "&amp;" string)
     (setq string (replace-match "&"  t nil string)))
   string)