diff options
| author | Glenn Morris | 2018-04-14 07:50:45 -0700 |
|---|---|---|
| committer | Glenn Morris | 2018-04-14 07:50:45 -0700 |
| commit | db71b3182778b66fad3865825777b06cc20b89a8 (patch) | |
| tree | a4528831664836775cdbd5c17436dad8a58aa0e7 /src/process.c | |
| parent | 132b3a9ace018a120e1b30fc94c8c98904509884 (diff) | |
| parent | 5a6bb01777e40a87ac59162d9833a13c81b7f292 (diff) | |
| download | emacs-db71b3182778b66fad3865825777b06cc20b89a8.tar.gz emacs-db71b3182778b66fad3865825777b06cc20b89a8.zip | |
Merge from origin/emacs-26
5a6bb01 (origin/emacs-26) Fix building etc/DOC in the MSDOS port
274c979 * lisp/select.el (gui-get-selection): Doc fix.
ad731b0 ; * doc/lispref/display.texi (Temporary Displays): Fix typos.
f1450e9 Complete documentation of syntax flags by adding `c'
6bdcaec Fix typos and minor wording issues in ELisp manual
febac27 Merge branch 'emacs-26' of git.savannah.gnu.org:/srv/git/emac...
6c2e21e Avoid segfault in processes of type 'pipe'
60e10c5 Remove repetitions in documentation strings
208e752 * lisp/image.el (image-load-path): Doc fix.
92e0fd8 ; * etc/NEWS: Remove a FIXME. (Bug#31122)
Conflicts:
etc/NEWS
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index c357a8bdc33..6dba218c907 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2471,6 +2471,10 @@ usage: (make-pipe-process &rest ARGS) */) | |||
| 2471 | /* This may signal an error. */ | 2471 | /* This may signal an error. */ |
| 2472 | setup_process_coding_systems (proc); | 2472 | setup_process_coding_systems (proc); |
| 2473 | 2473 | ||
| 2474 | pset_decoding_buf (p, empty_unibyte_string); | ||
| 2475 | eassert (p->decoding_carryover == 0); | ||
| 2476 | pset_encoding_buf (p, empty_unibyte_string); | ||
| 2477 | |||
| 2474 | specpdl_ptr = specpdl + specpdl_count; | 2478 | specpdl_ptr = specpdl + specpdl_count; |
| 2475 | 2479 | ||
| 2476 | return proc; | 2480 | return proc; |