aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2003-07-09 14:52:55 +0000
committerStefan Monnier2003-07-09 14:52:55 +0000
commitd2394df5b555f331da89a687d5132bac058d3f44 (patch)
treea1150263209ed08c1c59e2bab9592175d356ddef /src
parent88006f77c435184cbb0b2403720bcff9b8bd0e56 (diff)
downloademacs-d2394df5b555f331da89a687d5132bac058d3f44.tar.gz
emacs-d2394df5b555f331da89a687d5132bac058d3f44.zip
(run_pre_post_conversion_on_str): Use new type for overlays_(before|after).
Diffstat (limited to 'src')
-rw-r--r--src/coding.c4
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