diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/process.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 002c442b376..87f9894f488 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-12-02 Magnus Henoch <mange@freemail.hu> | ||
| 2 | |||
| 3 | * process.c (make_process): Initialize pty_flag to 0. | ||
| 4 | |||
| 1 | 2007-12-02 Jason Rumney <jasonr@gnu.org> | 5 | 2007-12-02 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly | 7 | * 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) | |||
| 626 | XSETFASTINT (p->tick, 0); | 626 | XSETFASTINT (p->tick, 0); |
| 627 | XSETFASTINT (p->update_tick, 0); | 627 | XSETFASTINT (p->update_tick, 0); |
| 628 | p->pid = 0; | 628 | p->pid = 0; |
| 629 | p->pty_flag = 0; | ||
| 629 | p->raw_status_new = 0; | 630 | p->raw_status_new = 0; |
| 630 | p->status = Qrun; | 631 | p->status = Qrun; |
| 631 | p->mark = Fmake_marker (); | 632 | p->mark = Fmake_marker (); |