diff options
| author | Stefan Monnier | 2003-07-09 14:48:41 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-07-09 14:48:41 +0000 |
| commit | 26a59e420845339ea8312c596781ef233d9ae0ae (patch) | |
| tree | 8e906940bcaf549210e1777b6961b0821330346c /src | |
| parent | 87359a3d315c85e1f3b9f8e9afda8a9d40fe5c7b (diff) | |
| download | emacs-26a59e420845339ea8312c596781ef233d9ae0ae.tar.gz emacs-26a59e420845339ea8312c596781ef233d9ae0ae.zip | |
(temp_output_buffer_setup): Use new type for overlays_(before|after).
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 (); |