diff options
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) |