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 [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/insdel.c [emacs-unicode-2]
Date: Mon, 28 Jun 2004 03:55:48 -0400

Index: emacs/src/insdel.c
diff -c emacs/src/insdel.c:1.175.2.3 emacs/src/insdel.c:1.175.2.4
*** emacs/src/insdel.c:1.175.2.3        Fri Apr 16 12:50:48 2004
--- emacs/src/insdel.c  Mon Jun 28 07:29:21 2004
***************
*** 1589,1595 ****
    Z_BYTE -= nbytes_del;
    GPT = from;
    GPT_BYTE = from_byte;
!   *(GPT_ADDR) = 0;            /* Put an anchor.  */
  
    if (GPT_BYTE < GPT)
      abort ();
--- 1589,1595 ----
    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 ();
***************
*** 1872,1878 ****
    Z -= nchars_del;
    GPT = from;
    GPT_BYTE = from_byte;
!   *(GPT_ADDR) = 0;            /* Put an anchor.  */
  
    if (GPT_BYTE < GPT)
      abort ();
--- 1872,1878 ----
    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]