From: Kim F. Storm Date: Sun, 6 Jun 2004 22:40:53 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: ttn-vms-21-2-B4~5894 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e2d7ee6545f4089cec9ad69c79c6b1ff31ac5ba;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index b95ad86dc77..02207784cc9 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -2043,6 +2043,12 @@ configuration files. * 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 --git a/src/ChangeLog b/src/ChangeLog index d58e8a89931..6f6af93995f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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