1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-02 11:50:48 -08:00

* buffer.c (buffer_slot_type_mismatch): Use XSTRING and

SYMBOL_NAME instead of XSYMBOL and name field.
This commit is contained in:
Ken Raeburn 2002-05-20 08:04:58 +00:00
parent 8fe5665d5a
commit 5b784cc92c

View file

@ -4279,7 +4279,7 @@ buffer_slot_type_mismatch (offset)
sym = PER_BUFFER_SYMBOL (offset);
error ("Only %s should be stored in the buffer-local variable %s",
type_name, XSYMBOL (sym)->name->data);
type_name, XSTRING (SYMBOL_NAME (sym))->data);
}