From: Dan Nicolaescu Date: Mon, 12 Jul 2010 17:04:38 +0000 (-0700) Subject: * src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~51^2~72 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=49d937f4491b1813963810923c6796badc681031;p=emacs.git * src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional. * src/process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8a13298b61d..82a50f48cc8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,6 +1,6 @@ 2010-07-12 Dan Nicolaescu - + * 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) diff --git a/src/buffer.c b/src/buffer.c index 46e1b90ac34..ac39219e61e 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -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; } diff --git a/src/process.c b/src/process.c index 0fec550ad8f..8de85354dd3 100644 --- a/src/process.c +++ b/src/process.c @@ -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++) {