]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_process): Initialize pty_flag to Qnil instead of 0
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Mon, 24 Dec 2007 05:26:06 +0000 (05:26 +0000)
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Mon, 24 Dec 2007 05:26:06 +0000 (05:26 +0000)
as it is not a bit field on Emacs 22 yet.

src/ChangeLog
src/process.c

index 2a8fc8e3f17c1eed113338efa67dac5862822eda..c0b86a16593bc419ce56f1222b5a5f5b8c35c005 100644 (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>
index adf8af9670d9dd794343d0d9f786a471a3d6e5fc..eb0dae04e964a28b54a2b690654d5c619d34a8be 100644 (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 ();