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