From 49d937f4491b1813963810923c6796badc681031 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Mon, 12 Jul 2010 10:04:38 -0700 Subject: [PATCH] * src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional. * src/process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT. --- src/ChangeLog | 2 +- src/buffer.c | 2 -- src/process.c | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) 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++) { -- 2.39.2