emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/coding.c


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/coding.c
Date: Tue, 22 Jul 2003 15:06:13 -0400

Index: emacs/src/coding.c
diff -c emacs/src/coding.c:1.288 emacs/src/coding.c:1.289
*** emacs/src/coding.c:1.288    Wed Jul  9 16:25:02 2003
--- emacs/src/coding.c  Tue Jul 22 15:06:12 2003
***************
*** 5998,6009 ****
    buffer = Fget_buffer_create (build_string (" *code-converting-work*"));
    buf = XBUFFER (buffer);
  
    buf->directory = current_buffer->directory;
    buf->read_only = Qnil;
    buf->filename = Qnil;
    buf->undo_list = Qt;
!   buf->overlays_before = NULL;
!   buf->overlays_after = NULL;
  
    set_buffer_internal (buf);
    /* We must insert the contents of STR as is without
--- 5998,6010 ----
    buffer = Fget_buffer_create (build_string (" *code-converting-work*"));
    buf = XBUFFER (buffer);
  
+   delete_all_overlays (buf);
    buf->directory = current_buffer->directory;
    buf->read_only = Qnil;
    buf->filename = Qnil;
    buf->undo_list = Qt;
!   eassert (buf->overlays_before == NULL);
!   eassert (buf->overlays_after == NULL);
  
    set_buffer_internal (buf);
    /* We must insert the contents of STR as is without




reply via email to

[Prev in Thread] Current Thread [Next in Thread]