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 | |
| 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')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2a8fc8e3f17..c0b86a16593 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 1 | 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 2 | ||
| 3 | * process.c (make_process): Initialize pty_flag to Qnil instead of 0 | ||
| 4 | as it is not a bit field on Emacs 22 yet. | ||
| 5 | |||
| 3 | * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area. | 6 | * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area. |
| 4 | 7 | ||
| 5 | 2007-12-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 8 | 2007-12-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
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 (); |