1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

* callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME

instead of XSYMBOL and name field.
This commit is contained in:
Ken Raeburn 2002-05-20 08:05:03 +00:00
parent 5b784cc92c
commit 2f44536644

View file

@ -597,7 +597,7 @@ supply if the command inquires which events were used to invoke it. */)
if (next_event >= key_count)
error ("%s must be bound to an event with parameters",
(SYMBOLP (function)
? (char *) XSYMBOL (function)->name->data
? (char *) XSTRING (SYMBOL_NAME (function))->data
: "command"));
args[i] = XVECTOR (keys)->contents[next_event++];
varies[i] = -1;