1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 15:21:51 -08:00

* abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and

name field.
This commit is contained in:
Ken Raeburn 2002-05-20 08:04:46 +00:00
parent 257ae3a60a
commit caeead2003

View file

@ -461,7 +461,7 @@ write_abbrev (sym, stream)
return;
insert (" (", 5);
XSETSTRING (name, XSYMBOL (sym)->name);
name = SYMBOL_NAME (sym);
Fprin1 (name, stream);
insert (" ", 1);
Fprin1 (SYMBOL_VALUE (sym), stream);