diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-01-06 01:10:25 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-01-06 01:10:25 +0000 |
commit | ceabd2726c4170795dbe21778d223fdb1855667f (patch) | |
tree | 7394626501901e8358ee6c838e6dc7a060ac3382 /lisp/xml.el | |
parent | e68b1cf16eda60bb58c1e0ad2038e4f24dc1f513 (diff) | |
download | emacs-ceabd2726c4170795dbe21778d223fdb1855667f.tar.gz |
Comment change.
Diffstat (limited to 'lisp/xml.el')
-rw-r--r-- | lisp/xml.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/xml.el b/lisp/xml.el index 9be12d171ec..0e7bf98df1d 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 """ 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 "&" string) (setq string (replace-match "&" t nil string))) string) |