diff options
| author | Kim F. Storm | 2004-06-06 22:40:53 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-06-06 22:40:53 +0000 |
| commit | 2e2d7ee6545f4089cec9ad69c79c6b1ff31ac5ba (patch) | |
| tree | b965f0911446698dbc16378ba6965cb577483f2e | |
| parent | 116c423ca59a5d2a19827ada0cb0312d731fc0ac (diff) | |
| download | emacs-2e2d7ee6545f4089cec9ad69c79c6b1ff31ac5ba.tar.gz emacs-2e2d7ee6545f4089cec9ad69c79c6b1ff31ac5ba.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 11 |
2 files changed, 17 insertions, 0 deletions
| @@ -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 | ||
| 2047 | delete-process. The status message passed to the sentinel for a | ||
| 2048 | deleted network process is "deleted". The message passed to the | ||
| 2049 | sentinel when the connection is closed by the remote peer has been | ||
| 2050 | changed 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 |
| 2047 | undo-outer-limit, garbage collection empties it. This is to prevent | 2053 | undo-outer-limit, garbage collection empties it. This is to prevent |
| 2048 | it from using up the available memory and choking Emacs. | 2054 | 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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-06-06 Steven Tamm <tamm@Steven-Tamms-Computer.local> | 12 | 2004-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 |