diff options
| author | Miles Bader | 2007-12-06 09:51:45 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-12-06 09:51:45 +0000 |
| commit | 0bd508417142ff377f34aec8dcec9438d9175c2c (patch) | |
| tree | 4d60fe09e5cebf7d79766b11e9cda8cc1c9dbb9b /src/process.c | |
| parent | 98fe991da804a42f53f6a5e84cd5eab18a82e181 (diff) | |
| parent | 9fb1ba8090da3528de56158a79bd3527d31c7f2f (diff) | |
| download | emacs-0bd508417142ff377f34aec8dcec9438d9175c2c.tar.gz emacs-0bd508417142ff377f34aec8dcec9438d9175c2c.zip | |
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index d80d7db2554..c2f0c82a6a8 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -631,6 +631,7 @@ make_process (name) | |||
| 631 | p->tick = 0; | 631 | p->tick = 0; |
| 632 | p->update_tick = 0; | 632 | p->update_tick = 0; |
| 633 | p->pid = 0; | 633 | p->pid = 0; |
| 634 | p->pty_flag = 0; | ||
| 634 | p->raw_status_new = 0; | 635 | p->raw_status_new = 0; |
| 635 | p->status = Qrun; | 636 | p->status = Qrun; |
| 636 | p->mark = Fmake_marker (); | 637 | p->mark = Fmake_marker (); |
| @@ -1374,8 +1375,10 @@ list_processes_1 (query_only) | |||
| 1374 | if (w_tty) | 1375 | if (w_tty) |
| 1375 | { | 1376 | { |
| 1376 | XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1); | 1377 | XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1); |
| 1377 | XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1); | 1378 | XSETFASTINT (i_command, XFASTINT (i_tty) + w_tty + 1); |
| 1378 | } else { | 1379 | } |
| 1380 | else | ||
| 1381 | { | ||
| 1379 | i_tty = Qnil; | 1382 | i_tty = Qnil; |
| 1380 | XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1); | 1383 | XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1); |
| 1381 | } | 1384 | } |