aboutsummaryrefslogtreecommitdiffstats
path: root/etc/NEWS
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2013-05-15 14:54:49 -0400
committerStefan Monnier <[email protected]>2013-05-15 14:54:49 -0400
commit1aa8d50570ea4ad6e57d1b2476b5338357a5ac74 (patch)
treef4670577d480e12ce2bb2af4bae768579a582566 /etc/NEWS
parentc99904740ebcfde5533c29798618b968d56c0bf4 (diff)
* 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 'etc/NEWS')
-rw-r--r--etc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 144adf1550..32f88bf395 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -327,6 +327,9 @@ It is layered as:
* Incompatible Lisp Changes in Emacs 24.4
+** Default process filers and sentinels are not nil any more.
+Instead they default to a function which does what the nil value used to do.
+
** `read-event' does not return decoded chars in ttys any more.
Just as was the case in Emacs-22 and before, decoding of tty input according to
keyboard-coding-system is not performed in read-event any more. But contrary