diff options
| author | Stefan Monnier | 2003-07-09 14:52:55 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-07-09 14:52:55 +0000 |
| commit | d2394df5b555f331da89a687d5132bac058d3f44 (patch) | |
| tree | a1150263209ed08c1c59e2bab9592175d356ddef | |
| parent | 88006f77c435184cbb0b2403720bcff9b8bd0e56 (diff) | |
| download | emacs-d2394df5b555f331da89a687d5132bac058d3f44.tar.gz emacs-d2394df5b555f331da89a687d5132bac058d3f44.zip | |
(run_pre_post_conversion_on_str): Use new type for overlays_(before|after).
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index b6458f284f9..5afd7b6050e 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -6001,8 +6001,8 @@ run_pre_post_conversion_on_str (str, coding, encodep) | |||
| 6001 | buf->read_only = Qnil; | 6001 | buf->read_only = Qnil; |
| 6002 | buf->filename = Qnil; | 6002 | buf->filename = Qnil; |
| 6003 | buf->undo_list = Qt; | 6003 | buf->undo_list = Qt; |
| 6004 | buf->overlays_before = Qnil; | 6004 | buf->overlays_before = NULL; |
| 6005 | buf->overlays_after = Qnil; | 6005 | buf->overlays_after = NULL; |
| 6006 | 6006 | ||
| 6007 | set_buffer_internal (buf); | 6007 | set_buffer_internal (buf); |
| 6008 | /* We must insert the contents of STR as is without | 6008 | /* We must insert the contents of STR as is without |