diff options
| author | Stefan Monnier | 2013-05-15 14:54:49 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2013-05-15 14:54:49 -0400 |
| commit | 1aa8d50570ea4ad6e57d1b2476b5338357a5ac74 (patch) | |
| tree | f4670577d480e12ce2bb2af4bae768579a582566 /src/ChangeLog | |
| parent | c99904740ebcfde5533c29798618b968d56c0bf4 (diff) | |
| download | emacs-1aa8d50570ea4ad6e57d1b2476b5338357a5ac74.tar.gz emacs-1aa8d50570ea4ad6e57d1b2476b5338357a5ac74.zip | |
* src/process.c: Export default filters and sentinels to Elisp.
(Qinternal_default_process_sentinel, Qinternal_default_process_filter):
New constants.
(pset_filter, pset_sentinel, make_process, Fset_process_filter)
(Fset_process_sentinel, Fformat_network_address):
Default to them instead of nil.
(server_accept_connection): Sentinels can't be nil any more.
(read_and_dispose_of_process_output): New function, extracted from
read_process_output.
(read_process_output): Use it; filters can't be nil.
(Finternal_default_process_filter): New function, extracted from
read_process_output.
(exec_sentinel_unwind): Remove function.
(exec_sentinel): Don't zilch sentinel while running.
(status_notify): Sentinels can't be nil.
(Finternal_default_process_sentinel): New function extracted from
status_notify.
(setup_process_coding_systems): Default filter is not nil any more.
(syms_of_process): Export new Elisp functions and initialize
new constants.
* src/lisp.h (make_lisp_proc): New function.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0b4ccb0708a..7226698934e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,29 @@ | |||
| 1 | 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * process.c: Export default filters and sentinels to Elisp. | ||
| 4 | (Qinternal_default_process_sentinel, Qinternal_default_process_filter): | ||
| 5 | New constants. | ||
| 6 | (pset_filter, pset_sentinel, make_process, Fset_process_filter) | ||
| 7 | (Fset_process_sentinel, Fformat_network_address): | ||
| 8 | Default to them instead of nil. | ||
| 9 | (server_accept_connection): Sentinels can't be nil any more. | ||
| 10 | (read_and_dispose_of_process_output): New function, extracted from | ||
| 11 | read_process_output. | ||
| 12 | (read_process_output): Use it; filters can't be nil. | ||
| 13 | (Finternal_default_process_filter): New function, extracted from | ||
| 14 | read_process_output. | ||
| 15 | (exec_sentinel_unwind): Remove function. | ||
| 16 | (exec_sentinel): Don't zilch sentinel while running. | ||
| 17 | (status_notify): Sentinels can't be nil. | ||
| 18 | (Finternal_default_process_sentinel): New function extracted from | ||
| 19 | status_notify. | ||
| 20 | (setup_process_coding_systems): Default filter is not nil any more. | ||
| 21 | (syms_of_process): Export new Elisp functions and initialize | ||
| 22 | new constants. | ||
| 23 | * lisp.h (make_lisp_proc): New function. | ||
| 24 | |||
| 25 | 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 26 | |||
| 3 | * regex.c (regex_compile) [\=, \>, \<]: Don't forget to set laststart. | 27 | * regex.c (regex_compile) [\=, \>, \<]: Don't forget to set laststart. |
| 4 | 28 | ||
| 5 | 2013-05-14 Eli Zaretskii <eliz@gnu.org> | 29 | 2013-05-14 Eli Zaretskii <eliz@gnu.org> |