emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/insdel.c [lexbind]
Date: Tue, 06 Jul 2004 07:12:16 -0400

Index: emacs/src/insdel.c
diff -c emacs/src/insdel.c:1.166.4.3 emacs/src/insdel.c:1.166.4.4
*** emacs/src/insdel.c:1.166.4.3        Thu Apr  1 04:29:09 2004
--- emacs/src/insdel.c  Tue Jul  6 09:23:54 2004
***************
*** 1556,1562 ****
    Z_BYTE -= nbytes_del;
    GPT = from;
    GPT_BYTE = from_byte;
!   *(GPT_ADDR) = 0;            /* Put an anchor.  */
  
    if (GPT_BYTE < GPT)
      abort ();
--- 1556,1562 ----
    Z_BYTE -= nbytes_del;
    GPT = from;
    GPT_BYTE = from_byte;
!   if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor.  */
  
    if (GPT_BYTE < GPT)
      abort ();
***************
*** 1839,1845 ****
    Z -= nchars_del;
    GPT = from;
    GPT_BYTE = from_byte;
!   *(GPT_ADDR) = 0;            /* Put an anchor.  */
  
    if (GPT_BYTE < GPT)
      abort ();
--- 1839,1845 ----
    Z -= nchars_del;
    GPT = from;
    GPT_BYTE = from_byte;
!   if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor.  */
  
    if (GPT_BYTE < GPT)
      abort ();




reply via email to

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