emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/abbrev.c
Date: Sun, 03 Mar 2002 15:08:56 -0500

Index: emacs/src/abbrev.c
diff -c emacs/src/abbrev.c:1.49 emacs/src/abbrev.c:1.50
*** emacs/src/abbrev.c:1.49     Sat Dec 29 16:42:22 2001
--- emacs/src/abbrev.c  Sun Mar  3 15:08:56 2002
***************
*** 331,337 ****
    if (INTEGERP (XSYMBOL (sym)->plist))
      XSETINT (XSYMBOL (sym)->plist,
             XINT (XSYMBOL (sym)->plist) + 1);
!   else if (!NILP (tem = Fget (sym, Qcount)))
      Fput (sym, Qcount, make_number (XINT (tem) + 1));
  
    /* If this abbrev has an expansion, delete the abbrev
--- 331,337 ----
    if (INTEGERP (XSYMBOL (sym)->plist))
      XSETINT (XSYMBOL (sym)->plist,
             XINT (XSYMBOL (sym)->plist) + 1);
!   else if (INTEGERP (tem = Fget (sym, Qcount)))
      Fput (sym, Qcount, make_number (XINT (tem) + 1));
  
    /* If this abbrev has an expansion, delete the abbrev



reply via email to

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