From: Ken Raeburn Date: Mon, 20 May 2002 08:04:58 +0000 (+0000) Subject: * buffer.c (buffer_slot_type_mismatch): Use XSTRING and X-Git-Tag: ttn-vms-21-2-B4~14979 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5b784cc92ca5fb5f44a9c9e33c3202fd1bf7f263;p=emacs.git * buffer.c (buffer_slot_type_mismatch): Use XSTRING and SYMBOL_NAME instead of XSYMBOL and name field. --- diff --git a/src/buffer.c b/src/buffer.c index 83957ca0ad5..27ad62366b9 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -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); }