1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

* src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.

* src/process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
This commit is contained in:
Dan Nicolaescu 2010-07-12 10:04:38 -07:00
parent 2e31d424a1
commit 49d937f449
3 changed files with 2 additions and 4 deletions

View 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)

View 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;
}

View 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++)
{