aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS6
-rw-r--r--src/ChangeLog11
2 files changed, 17 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index b95ad86dc77..02207784cc9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2043,6 +2043,12 @@ configuration files.
2043 2043
2044* Lisp Changes in Emacs 21.4 2044* Lisp Changes in Emacs 21.4
2045 2045
2046** The sentinel is now called whan a network process is deleted with
2047delete-process. The status message passed to the sentinel for a
2048deleted network process is "deleted". The message passed to the
2049sentinel when the connection is closed by the remote peer has been
2050changed to "connection broken by remote peer".
2051
2046** If the buffer's undo list for the current command gets longer than 2052** If the buffer's undo list for the current command gets longer than
2047undo-outer-limit, garbage collection empties it. This is to prevent 2053undo-outer-limit, garbage collection empties it. This is to prevent
2048it from using up the available memory and choking Emacs. 2054it from using up the available memory and choking Emacs.
diff --git a/src/ChangeLog b/src/ChangeLog
index d58e8a89931..6f6af93995f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12004-06-07 Kim F. Storm <storm@cua.dk>
2
3 * process.c (Fdelete_process): Undo 2004-05-28 change.
4 Instead, call status_notify also for network process.
5 (status_message): Use process instead of status as arg.
6 Give messages "deleted" or "connection broken by remote peer" for
7 an exited network process.
8 (status_notify): Change call to status_message.
9 (read_process_output): Increase readmax to 4096. Do not increase
10 buffer size for datagram channels (default is now large enough).
11
12004-06-06 Steven Tamm <tamm@Steven-Tamms-Computer.local> 122004-06-06 Steven Tamm <tamm@Steven-Tamms-Computer.local>
2 13
3 * macfns.c (x_create_tip_frame): Fix Mac OS X 10.1 compilation 14 * macfns.c (x_create_tip_frame): Fix Mac OS X 10.1 compilation