1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-27 19:31:38 +00:00

(make_process): Initialize pty_flag to 0.

This commit is contained in:
Richard M. Stallman 2007-12-03 00:41:15 +00:00
parent b694135c73
commit 0277bfa1a4
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-12-02 Magnus Henoch <mange@freemail.hu>
* process.c (make_process): Initialize pty_flag to 0.
2007-12-02 Jason Rumney <jasonr@gnu.org>
* image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly

View File

@ -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 ();