emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100794: * src/buffer.c (Fset_buffer_


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100794: * src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
Date: Mon, 12 Jul 2010 10:04:38 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100794
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Mon 2010-07-12 10:04:38 -0700
message:
  * src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
  * src/process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
modified:
  src/ChangeLog
  src/buffer.c
  src/process.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-07-12 16:56:59 +0000
+++ b/src/ChangeLog     2010-07-12 17:04:38 +0000
@@ -1,6 +1,6 @@
 2010-07-12  Dan Nicolaescu  <address@hidden>
 
-
+       * 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)

=== modified file 'src/buffer.c'
--- a/src/buffer.c      2010-07-08 21:25:08 +0000
+++ b/src/buffer.c      2010-07-12 17:04:38 +0000
@@ -2540,7 +2540,6 @@
   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 @@
     if (PROCESSP (process))
       setup_process_coding_systems (process);
   }
-#endif /* subprocesses */
 
   return flag;
 }

=== modified file 'src/process.c'
--- a/src/process.c     2010-07-11 18:34:43 +0000
+++ b/src/process.c     2010-07-12 17:04:38 +0000
@@ -4120,7 +4120,7 @@
 void
 close_process_descs (void)
 {
-#ifndef WINDOWSNT
+#ifndef DOS_NT
   int i;
   for (i = 0; i < MAXDESC; i++)
     {


reply via email to

[Prev in Thread] Current Thread [Next in Thread]