(make_process): Initialize pty_flag to Qnil instead of 0

as it is not a bit field on Emacs 22 yet.
This commit is contained in:
YAMAMOTO Mitsuharu 2007-12-24 05:26:06 +00:00
parent 5742be860f
commit 9d826ef208
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* process.c (make_process): Initialize pty_flag to Qnil instead of 0
as it is not a bit field on Emacs 22 yet.
* xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
2007-12-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>

View file

@ -626,7 +626,7 @@ make_process (name)
XSETFASTINT (p->tick, 0);
XSETFASTINT (p->update_tick, 0);
p->pid = 0;
p->pty_flag = 0;
p->pty_flag = Qnil;
p->raw_status_new = 0;
p->status = Qrun;
p->mark = Fmake_marker ();