diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-07-09 14:52:55 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-07-09 14:52:55 +0000 |
commit | d2394df5b555f331da89a687d5132bac058d3f44 (patch) | |
tree | a1150263209ed08c1c59e2bab9592175d356ddef /src/coding.c | |
parent | 88006f77c435184cbb0b2403720bcff9b8bd0e56 (diff) | |
download | emacs-d2394df5b555f331da89a687d5132bac058d3f44.tar.gz |
(run_pre_post_conversion_on_str): Use new type for overlays_(before|after).
Diffstat (limited to 'src/coding.c')
-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) buf->read_only = Qnil; buf->filename = Qnil; buf->undo_list = Qt; - buf->overlays_before = Qnil; - buf->overlays_after = Qnil; + buf->overlays_before = NULL; + buf->overlays_after = NULL; set_buffer_internal (buf); /* We must insert the contents of STR as is without |