From: Richard M. Stallman Date: Mon, 3 Dec 2007 00:41:15 +0000 (+0000) Subject: (make_process): Initialize pty_flag to 0. X-Git-Tag: emacs-pretest-22.1.90~289 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0277bfa1a48855f8d79b2f05a026d5763d9b495c;p=emacs.git (make_process): Initialize pty_flag to 0. --- diff --git a/src/ChangeLog b/src/ChangeLog index 002c442b376..87f9894f488 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-12-02 Magnus Henoch + + * process.c (make_process): Initialize pty_flag to 0. + 2007-12-02 Jason Rumney * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly diff --git a/src/process.c b/src/process.c index 013aad40117..adf8af9670d 100644 --- a/src/process.c +++ b/src/process.c @@ -626,6 +626,7 @@ make_process (name) XSETFASTINT (p->tick, 0); XSETFASTINT (p->update_tick, 0); p->pid = 0; + p->pty_flag = 0; p->raw_status_new = 0; p->status = Qrun; p->mark = Fmake_marker ();