]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fexpand_abbrev): Don't use XFASTINT as an lvalue.
authorKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 15:28:15 +0000 (15:28 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 15:28:15 +0000 (15:28 +0000)
src/abbrev.c

index ea7b619254ad284292d3bf605449cf79a495fc13..244d530c464d553a978c56c0414302dd27958c45 100644 (file)
@@ -271,7 +271,7 @@ Returns t if expansion took place.")
   if (VECTORP (current_buffer->abbrev_table))
     sym = oblookup (current_buffer->abbrev_table, buffer, p - buffer);
   else
-    XFASTINT (sym) = 0;
+    XSETFASTINT (sym, 0);
   if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value))
     sym = oblookup (Vglobal_abbrev_table, buffer, p - buffer);
   if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value))