diff src/process.c @ 79621:2dfb2dab2a93

(make_process): Initialize pty_flag to Qnil instead of 0 as it is not a bit field on Emacs 22 yet.
author YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
date Mon, 24 Dec 2007 05:25:42 +0000
parents df7ebb131a0b
children fc2bcd2a8aad cdd30283527d
line wrap: on
line diff
--- a/src/process.c	Mon Dec 24 03:01:28 2007 +0000
+++ b/src/process.c	Mon Dec 24 05:25:42 2007 +0000
@@ -626,7 +626,7 @@
   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 ();