# HG changeset patch # User Karl Heuer # Date 781284495 0 # Node ID 4d083b72b3b15157c8ccf643d3f52992e0085732 # Parent 9793cba6b65e46f17553da47477640447fcd74e1 (Fexpand_abbrev): Don't use XFASTINT as an lvalue. diff -r 9793cba6b65e -r 4d083b72b3b1 src/abbrev.c --- 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))