aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/abbrev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index 3edbe245831..d134f95f25b 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -331,7 +331,7 @@ Returns the abbrev symbol, if expansion took place. */)
331 if (INTEGERP (XSYMBOL (sym)->plist)) 331 if (INTEGERP (XSYMBOL (sym)->plist))
332 XSETINT (XSYMBOL (sym)->plist, 332 XSETINT (XSYMBOL (sym)->plist,
333 XINT (XSYMBOL (sym)->plist) + 1); 333 XINT (XSYMBOL (sym)->plist) + 1);
334 else if (!NILP (tem = Fget (sym, Qcount))) 334 else if (INTEGERP (tem = Fget (sym, Qcount)))
335 Fput (sym, Qcount, make_number (XINT (tem) + 1)); 335 Fput (sym, Qcount, make_number (XINT (tem) + 1));
336 336
337 /* If this abbrev has an expansion, delete the abbrev 337 /* If this abbrev has an expansion, delete the abbrev