summaryrefslogtreecommitdiff
path: root/src/abbrev.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-10-04 15:28:15 +0000
committerKarl Heuer <kwzh@gnu.org>1994-10-04 15:28:15 +0000
commitbb9fc7cb5456c6fc1610593d0a28eb46d23f974c (patch)
tree709ce6ceb058dbfccb9099e2f25230c0f50a0e0c /src/abbrev.c
parent9c32b770ff27d40966d3d4b9bc8573b6b4a0f899 (diff)
downloademacs-bb9fc7cb5456c6fc1610593d0a28eb46d23f974c.tar.gz
(Fexpand_abbrev): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src/abbrev.c')
-rw-r--r--src/abbrev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index ea7b619254a..244d530c464 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -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))