changeset 9294:4d083b72b3b1

(Fexpand_abbrev): Don't use XFASTINT as an lvalue.
author Karl Heuer <kwzh@gnu.org>
date Tue, 04 Oct 1994 15:28:15 +0000
parents 9793cba6b65e
children 17d393a8eed6
files src/abbrev.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/abbrev.c	Tue Oct 04 15:27:37 1994 +0000
+++ b/src/abbrev.c	Tue Oct 04 15:28:15 1994 +0000
@@ -271,7 +271,7 @@
   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))