diff options
| author | YAMAMOTO Mitsuharu | 2007-12-24 05:26:06 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2007-12-24 05:26:06 +0000 |
| commit | 9d826ef2087381a1241029671ca942718c3a19d9 (patch) | |
| tree | 078c8df94939be567c4f20b50a6e2214c26d423b /src/process.c | |
| parent | 5742be860f445f80c06c12846bd9ee0d44aadd30 (diff) | |
| download | emacs-9d826ef2087381a1241029671ca942718c3a19d9.tar.gz emacs-9d826ef2087381a1241029671ca942718c3a19d9.zip | |
(make_process): Initialize pty_flag to Qnil instead of 0
as it is not a bit field on Emacs 22 yet.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index adf8af9670d..eb0dae04e96 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -626,7 +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->pty_flag = Qnil; |
| 630 | p->raw_status_new = 0; | 630 | p->raw_status_new = 0; |
| 631 | p->status = Qrun; | 631 | p->status = Qrun; |
| 632 | p->mark = Fmake_marker (); | 632 | p->mark = Fmake_marker (); |