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:
parent
2e31d424a1
commit
49d937f449
@ -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)
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user