aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/xml.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2003-01-06 01:10:25 +0000
committerRichard M. Stallman <[email protected]>2003-01-06 01:10:25 +0000
commitceabd2726c4170795dbe21778d223fdb1855667f (patch)
tree7394626501901e8358ee6c838e6dc7a060ac3382 /lisp/xml.el
parente68b1cf16eda60bb58c1e0ad2038e4f24dc1f513 (diff)
Comment change.
Diffstat (limited to 'lisp/xml.el')
-rw-r--r--lisp/xml.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/xml.el b/lisp/xml.el
index 9be12d171e..0e7bf98df1 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -450,7 +450,7 @@ The DTD must end before the position END in the current buffer."
(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)