]> git.eshelyaron.com Git - emacs.git/commitdiff
* 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 8a13298b61dc5c5b34babf5d4a9b8a6e715a5b51..82a50f48cc86b41c043f08c6784bc00b4e595c95 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 46e1b90ac34817f4b721a4054980a25607849287..ac39219e61e153df59ada8a36370ceef6be2a438 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 0fec550ad8f46783316ea0a0aeabe7a881bd0fb1..8de85354dd388188cfc3e3c3ff1e2f9ff16173f9 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++)
     {