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:
parent
257ae3a60a
commit
caeead2003
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue