diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/print.c b/src/print.c index 76be38265bb..5eb79aebdf9 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Lisp object printing and output streams. | 1 | /* Lisp object printing and output streams. |
| 2 | Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 98, 1999, 2000, 2001 | 2 | Copyright (C) 1985, 86, 88, 93, 94, 95, 97, 98, 1999, 2000, 01, 2003 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -596,8 +596,8 @@ temp_output_buffer_setup (bufname) | |||
| 596 | current_buffer->read_only = Qnil; | 596 | current_buffer->read_only = Qnil; |
| 597 | current_buffer->filename = Qnil; | 597 | current_buffer->filename = Qnil; |
| 598 | current_buffer->undo_list = Qt; | 598 | current_buffer->undo_list = Qt; |
| 599 | current_buffer->overlays_before = Qnil; | 599 | current_buffer->overlays_before = NULL; |
| 600 | current_buffer->overlays_after = Qnil; | 600 | current_buffer->overlays_after = NULL; |
| 601 | current_buffer->enable_multibyte_characters | 601 | current_buffer->enable_multibyte_characters |
| 602 | = buffer_defaults.enable_multibyte_characters; | 602 | = buffer_defaults.enable_multibyte_characters; |
| 603 | Ferase_buffer (); | 603 | Ferase_buffer (); |