# HG changeset patch # User Kim F. Storm # Date 1086561653 0 # Node ID e2a4206075f9aca7544069bdc5427058dbf1ddee # Parent 8979bc3ade705fceee445f3d6e2aac3c76a1a685 *** empty log message *** diff -r 8979bc3ade70 -r e2a4206075f9 etc/NEWS --- a/etc/NEWS Sun Jun 06 22:17:53 2004 +0000 +++ b/etc/NEWS Sun Jun 06 22:40:53 2004 +0000 @@ -2043,6 +2043,12 @@ * Lisp Changes in Emacs 21.4 +** The sentinel is now called whan a network process is deleted with +delete-process. The status message passed to the sentinel for a +deleted network process is "deleted". The message passed to the +sentinel when the connection is closed by the remote peer has been +changed to "connection broken by remote peer". + ** If the buffer's undo list for the current command gets longer than undo-outer-limit, garbage collection empties it. This is to prevent it from using up the available memory and choking Emacs. diff -r 8979bc3ade70 -r e2a4206075f9 src/ChangeLog --- a/src/ChangeLog Sun Jun 06 22:17:53 2004 +0000 +++ b/src/ChangeLog Sun Jun 06 22:40:53 2004 +0000 @@ -1,3 +1,14 @@ +2004-06-07 Kim F. Storm + + * process.c (Fdelete_process): Undo 2004-05-28 change. + Instead, call status_notify also for network process. + (status_message): Use process instead of status as arg. + Give messages "deleted" or "connection broken by remote peer" for + an exited network process. + (status_notify): Change call to status_message. + (read_process_output): Increase readmax to 4096. Do not increase + buffer size for datagram channels (default is now large enough). + 2004-06-06 Steven Tamm * macfns.c (x_create_tip_frame): Fix Mac OS X 10.1 compilation