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: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/abbrev.c
Date: Thu, 28 Feb 2002 20:02:25 -0500

Index: emacs/src/abbrev.c
diff -c emacs/src/abbrev.c:1.48 emacs/src/abbrev.c:1.49
*** emacs/src/abbrev.c:1.48     Fri Dec 28 17:14:23 2001
--- emacs/src/abbrev.c  Sat Dec 29 16:42:22 2001
***************
*** 331,337 ****
    if (INTEGERP (XSYMBOL (sym)->plist))
      XSETINT (XSYMBOL (sym)->plist,
             XINT (XSYMBOL (sym)->plist) + 1);
!   else if (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 (!NILP (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]