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:
parent
8fe5665d5a
commit
5b784cc92c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue