aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-01-06 01:10:25 +0000
committerRichard M. Stallman2003-01-06 01:10:25 +0000
commitceabd2726c4170795dbe21778d223fdb1855667f (patch)
tree7394626501901e8358ee6c838e6dc7a060ac3382
parente68b1cf16eda60bb58c1e0ad2038e4f24dc1f513 (diff)
downloademacs-ceabd2726c4170795dbe21778d223fdb1855667f.tar.gz
emacs-ceabd2726c4170795dbe21778d223fdb1855667f.zip
Comment change.
-rw-r--r--lisp/xml.el2
-rw-r--r--src/xselect.c1
2 files changed, 2 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)
diff --git a/src/xselect.c b/src/xselect.c
index 07a61ca2de3..ffd7b8d7fc0 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -729,6 +729,7 @@ x_reply_selection_request (event, format, data, size, type)
729 TRACE0 ("Done sending incrementally"); 729 TRACE0 ("Done sending incrementally");
730 } 730 }
731 731
732 /* rms, 2003-01-03: I think I have fixed this bug. */
732 /* The window we're communicating with may have been deleted 733 /* The window we're communicating with may have been deleted
733 in the meantime (that's a real situation from a bug report). 734 in the meantime (that's a real situation from a bug report).
734 In this case, there may be events in the event queue still 735 In this case, there may be events in the event queue still