comparison src/coding.c @ 51842:efecd49d7338

(run_pre_post_conversion_on_str): Use new type for overlays_(before|after).
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 09 Jul 2003 14:52:55 +0000
parents 28be64986453
children 1d29dcb76e2b
comparison
equal deleted inserted replaced
51841:59ba1f5d0a16 51842:efecd49d7338
5999 5999
6000 buf->directory = current_buffer->directory; 6000 buf->directory = current_buffer->directory;
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
6009 unibyte<->multibyte conversion. For that, we adjust the 6009 unibyte<->multibyte conversion. For that, we adjust the
6010 multibyteness of the working buffer to that of STR. */ 6010 multibyteness of the working buffer to that of STR. */