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