diff options
| author | Karoly Lorentey | 2007-04-22 12:12:29 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2007-04-22 12:12:29 +0000 |
| commit | e18c709364b095ea0be8ecabe458ac9a642a252f (patch) | |
| tree | efe814a842f932f387b3947c572bf43a548d17ef /src/print.c | |
| parent | 81088e260b086fe28f36964f32b6338210ec6fd8 (diff) | |
| parent | 9f25e707aaad5ed14a9448e9c5d345ff0bdbc5a7 (diff) | |
| download | emacs-e18c709364b095ea0be8ecabe458ac9a642a252f.tar.gz emacs-e18c709364b095ea0be8ecabe458ac9a642a252f.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-660
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-661
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-662
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-663
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-664
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-665
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-666
Fix read-only prompt problem in isearch
* emacs@sv.gnu.org/emacs--devo--0--patch-667
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-668
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-669
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-670
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-671
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-672
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-673
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-206
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-207
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-208
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-600
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index ed233729c6f..cbf5830a85b 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -33,6 +33,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 33 | #include "dispextern.h" | 33 | #include "dispextern.h" |
| 34 | #include "termchar.h" | 34 | #include "termchar.h" |
| 35 | #include "intervals.h" | 35 | #include "intervals.h" |
| 36 | #include "blockinput.h" | ||
| 36 | 37 | ||
| 37 | Lisp_Object Vstandard_output, Qstandard_output; | 38 | Lisp_Object Vstandard_output, Qstandard_output; |
| 38 | 39 | ||
| @@ -976,7 +977,11 @@ append to existing target file. */) | |||
| 976 | Lisp_Object file, append; | 977 | Lisp_Object file, append; |
| 977 | { | 978 | { |
| 978 | if (initial_stderr_stream != NULL) | 979 | if (initial_stderr_stream != NULL) |
| 979 | fclose (stderr); | 980 | { |
| 981 | BLOCK_INPUT; | ||
| 982 | fclose (stderr); | ||
| 983 | UNBLOCK_INPUT; | ||
| 984 | } | ||
| 980 | stderr = initial_stderr_stream; | 985 | stderr = initial_stderr_stream; |
| 981 | initial_stderr_stream = NULL; | 986 | initial_stderr_stream = NULL; |
| 982 | 987 | ||