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: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/buffer.c
Date: Wed, 09 Jul 2003 15:05:42 -0400

Index: emacs/src/buffer.c
diff -c emacs/src/buffer.c:1.431 emacs/src/buffer.c:1.432
*** emacs/src/buffer.c:1.431    Wed Jul  9 11:09:12 2003
--- emacs/src/buffer.c  Wed Jul  9 15:05:41 2003
***************
*** 3431,3437 ****
       or the found one ends before PREV,
       or the found one is the last one in the list,
       we don't have to fix anything.  */
!   if (tail || end < prev || !tail->next)
      return;
  
    right_pair = parent;
--- 3431,3437 ----
       or the found one ends before PREV,
       or the found one is the last one in the list,
       we don't have to fix anything.  */
!   if (!tail || end < prev || !tail->next)
      return;
  
    right_pair = parent;




reply via email to

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