diff options
| author | Richard M. Stallman | 2003-01-06 01:10:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-01-06 01:10:25 +0000 |
| commit | ceabd2726c4170795dbe21778d223fdb1855667f (patch) | |
| tree | 7394626501901e8358ee6c838e6dc7a060ac3382 /lisp | |
| parent | e68b1cf16eda60bb58c1e0ad2038e4f24dc1f513 (diff) | |
| download | emacs-ceabd2726c4170795dbe21778d223fdb1855667f.tar.gz emacs-ceabd2726c4170795dbe21778d223fdb1855667f.zip | |
Comment change.
Diffstat (limited to 'lisp')
| -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." | |||
| 450 | (setq string (replace-match "'" t nil string))) | 450 | (setq string (replace-match "'" t nil string))) |
| 451 | (while (string-match """ string) | 451 | (while (string-match """ string) |
| 452 | (setq string (replace-match "\"" t nil string))) | 452 | (setq string (replace-match "\"" t nil string))) |
| 453 | ;; do this last to avoid aliasing errors | 453 | ;; This goes last so it doesn't confuse the matches above. |
| 454 | (while (string-match "&" string) | 454 | (while (string-match "&" string) |
| 455 | (setq string (replace-match "&" t nil string))) | 455 | (setq string (replace-match "&" t nil string))) |
| 456 | string) | 456 | string) |