* process.c (read_and_dispose_of_process_output): Fix typo
in previous patch: we want nonnegative fds, not nonzero fds.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2014-07-08 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* process.c (read_and_dispose_of_process_output): Fix typo
|
||||
in previous patch: we want nonnegative fds, not nonzero fds.
|
||||
|
||||
2014-07-08 Dmitry Antipov <dmantipov@yandex.ru>
|
||||
|
||||
* chartab.c (char_table_translate): Move to...
|
||||
|
||||
@@ -5134,7 +5134,7 @@ read_and_dispose_of_process_output (struct Lisp_Process *p, char *chars,
|
||||
proc_encode_coding_system[p->outfd] surely points to a
|
||||
valid memory because p->outfd will be changed once EOF is
|
||||
sent to the process. */
|
||||
if (NILP (p->encode_coding_system) && p->outfd
|
||||
if (NILP (p->encode_coding_system) && p->outfd >= 0
|
||||
&& proc_encode_coding_system[p->outfd])
|
||||
{
|
||||
pset_encode_coding_system
|
||||
|
||||
Reference in New Issue
Block a user