diff options
| author | Kim F. Storm | 2003-09-16 23:04:38 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-09-16 23:04:38 +0000 |
| commit | e9c50801463ba7c4efe878c82398c68e243a02a4 (patch) | |
| tree | 6c984677a83ebcab37eeb523a6c9843c609dbb8f /src | |
| parent | a0fc36449f2dc84a13130ba2f71065223655fa1d (diff) | |
| download | emacs-e9c50801463ba7c4efe878c82398c68e243a02a4.tar.gz emacs-e9c50801463ba7c4efe878c82398c68e243a02a4.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index bdbdb8142d7..7b927e1b122 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2003-09-17 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * process.c (Fset_process_sentinel): Add sentinel to childp plist | ||
| 4 | for network process. | ||
| 5 | (socket_options): Add `:' prefix to option names. Add optbit field. | ||
| 6 | (set_socket_option): Remove no_error arg and special handling of s < 0. | ||
| 7 | Return 1<<optbit for known option, 0 for unknown. | ||
| 8 | Do not interpret 0 as false for boolean option (only nil). | ||
| 9 | Pass failed option and value to report_file_error. | ||
| 10 | (Fset_network_process_options): Replaced by Fset_network_process_option. | ||
| 11 | (Fset_network_process_option): New function to set just one option. | ||
| 12 | (Fmake_network_process): Allow :coding arg to be a cons. | ||
| 13 | Allow :server arg to be an integer specifying backlog size. | ||
| 14 | Remove :options arg, and allow options to be specified directly | ||
| 15 | as :KEY, VALUE pairs. Parse these options before binding socket. | ||
| 16 | As before, :reuseaddr t is default for a server process, but this | ||
| 17 | can now be disabled by specifying :reuseaddr nil. | ||
| 18 | (Fnetwork_interface_info): Rename from Fget_network_interface_info. | ||
| 19 | (init_process): Availability of network options is now checked with | ||
| 20 | simpler syntax (featurep 'make-network-process :OPTION); use loop to | ||
| 21 | setup features. | ||
| 22 | (syms_of_process): Fix defsubr's for the replaced functions. | ||
| 23 | |||
| 1 | 2003-09-16 Dave Love <fx@gnu.org> | 24 | 2003-09-16 Dave Love <fx@gnu.org> |
| 2 | 25 | ||
| 3 | * Makefile.in: Depend on coding.h. | 26 | * Makefile.in: Depend on coding.h. |