aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2007-12-03 00:41:15 +0000
committerRichard M. Stallman2007-12-03 00:41:15 +0000
commit0277bfa1a48855f8d79b2f05a026d5763d9b495c (patch)
tree5fc6d1c8f40afc51121fa36da94c2b08c92b13c4 /src
parentb694135c737dd12cc7fec306b1154b19c06953bf (diff)
downloademacs-0277bfa1a48855f8d79b2f05a026d5763d9b495c.tar.gz
emacs-0277bfa1a48855f8d79b2f05a026d5763d9b495c.zip
(make_process): Initialize pty_flag to 0.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/process.c1
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 @@
12007-12-02 Magnus Henoch <mange@freemail.hu>
2
3 * process.c (make_process): Initialize pty_flag to 0.
4
12007-12-02 Jason Rumney <jasonr@gnu.org> 52007-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 ();