* src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 12 Jul 2010 17:04:38 +0000 (10:04 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 12 Jul 2010 17:04:38 +0000 (10:04 -0700)
* src/process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.

src/ChangeLog
src/buffer.c
src/process.c

index 8a13298..82a50f4 100644 (file)
@@ -1,6 +1,6 @@
 2010-07-12  Dan Nicolaescu  <dann@ics.uci.edu>
 
-
+       * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
        * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
 
        * emacs.c (__do_global_ctors, __do_global_ctors_aux)
index 46e1b90..ac39219 100644 (file)
@@ -2540,7 +2540,6 @@ current buffer is cleared.  */)
   if (!modified_p && !NILP (Fbuffer_modified_p (Qnil)))
     Fset_buffer_modified_p (Qnil);
 
-#ifdef subprocesses
   /* Update coding systems of this buffer's process (if any).  */
   {
     Lisp_Object process;
@@ -2549,7 +2548,6 @@ current buffer is cleared.  */)
     if (PROCESSP (process))
       setup_process_coding_systems (process);
   }
-#endif /* subprocesses */
 
   return flag;
 }
index 0fec550..8de8535 100644 (file)
@@ -4120,7 +4120,7 @@ deactivate_process (Lisp_Object proc)
 void
 close_process_descs (void)
 {
-#ifndef WINDOWSNT
+#ifndef DOS_NT
   int i;
   for (i = 0; i < MAXDESC; i++)
     {