emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Gerd Moellmann
Subject: [Emacs-diffs] Changes to emacs/src/buffer.c
Date: Tue, 19 Aug 2003 08:38:36 -0400

Index: emacs/src/buffer.c
diff -c emacs/src/buffer.c:1.435 emacs/src/buffer.c:1.436
*** emacs/src/buffer.c:1.435    Tue Jul 22 15:02:11 2003
--- emacs/src/buffer.c  Tue Aug 19 08:38:36 2003
***************
*** 3741,3755 ****
    end = OVERLAY_END (overlay);
    if (OVERLAY_POSITION (end) < b->overlay_center)
      {
!       if (b->overlays_after)
!       XOVERLAY (overlay)->next = b->overlays_after;
!     b->overlays_after = XOVERLAY (overlay);
      }
    else
      {
!       if (b->overlays_before)
!       XOVERLAY (overlay)->next = b->overlays_before;
!     b->overlays_before = XOVERLAY (overlay);
      }
  
    /* This puts it in the right list, and in the right order.  */
--- 3741,3753 ----
    end = OVERLAY_END (overlay);
    if (OVERLAY_POSITION (end) < b->overlay_center)
      {
!       XOVERLAY (overlay)->next = b->overlays_after;
!       b->overlays_after = XOVERLAY (overlay);
      }
    else
      {
!       XOVERLAY (overlay)->next = b->overlays_before;
!       b->overlays_before = XOVERLAY (overlay);
      }
  
    /* This puts it in the right list, and in the right order.  */




reply via email to

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