emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/marker.c
Date: Mon, 01 Apr 2002 18:07:40 -0500

Index: emacs/src/marker.c
diff -c emacs/src/marker.c:1.35 emacs/src/marker.c:1.36
*** emacs/src/marker.c:1.35     Sun Nov 18 01:52:56 2001
--- emacs/src/marker.c  Mon Apr  1 18:07:40 2002
***************
*** 149,156 ****
    if (best_above == best_above_byte)
      return charpos;
  
!   best_below = 1;
!   best_below_byte = 1;
  
    /* We find in best_above and best_above_byte
       the closest known point above CHARPOS,
--- 149,156 ----
    if (best_above == best_above_byte)
      return charpos;
  
!   best_below = BEG;
!   best_below_byte = BEG_BYTE;
  
    /* We find in best_above and best_above_byte
       the closest known point above CHARPOS,
***************
*** 326,333 ****
    if (best_above == best_above_byte)
      return bytepos;
  
!   best_below = 1;
!   best_below_byte = 1;
  
    CONSIDER (BUF_PT_BYTE (b), BUF_PT (b));
    CONSIDER (BUF_GPT_BYTE (b), BUF_GPT (b));
--- 326,333 ----
    if (best_above == best_above_byte)
      return bytepos;
  
!   best_below = BEG;
!   best_below_byte = BEG_BYTE;
  
    CONSIDER (BUF_PT_BYTE (b), BUF_PT (b));
    CONSIDER (BUF_GPT_BYTE (b), BUF_GPT (b));



reply via email to

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