diff options
| author | Dan Nicolaescu | 2010-07-12 10:04:38 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-12 10:04:38 -0700 |
| commit | 49d937f4491b1813963810923c6796badc681031 (patch) | |
| tree | d5654aa8f27de7fafa207d5c2ae27f7c6c6cd52d /src/buffer.c | |
| parent | 2e31d424a10785a5459ad603044b52f010d5ac77 (diff) | |
| download | emacs-49d937f4491b1813963810923c6796badc681031.tar.gz emacs-49d937f4491b1813963810923c6796badc681031.zip | |
* src/buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
* src/process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 0 insertions, 2 deletions
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. */) | |||
| 2540 | if (!modified_p && !NILP (Fbuffer_modified_p (Qnil))) | 2540 | if (!modified_p && !NILP (Fbuffer_modified_p (Qnil))) |
| 2541 | Fset_buffer_modified_p (Qnil); | 2541 | Fset_buffer_modified_p (Qnil); |
| 2542 | 2542 | ||
| 2543 | #ifdef subprocesses | ||
| 2544 | /* Update coding systems of this buffer's process (if any). */ | 2543 | /* Update coding systems of this buffer's process (if any). */ |
| 2545 | { | 2544 | { |
| 2546 | Lisp_Object process; | 2545 | Lisp_Object process; |
| @@ -2549,7 +2548,6 @@ current buffer is cleared. */) | |||
| 2549 | if (PROCESSP (process)) | 2548 | if (PROCESSP (process)) |
| 2550 | setup_process_coding_systems (process); | 2549 | setup_process_coding_systems (process); |
| 2551 | } | 2550 | } |
| 2552 | #endif /* subprocesses */ | ||
| 2553 | 2551 | ||
| 2554 | return flag; | 2552 | return flag; |
| 2555 | } | 2553 | } |