aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2002-05-20 08:05:03 +0000
committerKen Raeburn2002-05-20 08:05:03 +0000
commit2f4453664409ed3f7131afc6113bcffb16f22750 (patch)
tree98becc9b0dbd9c220edee8e3d107b7eb3fbbb6f2 /src
parent5b784cc92ca5fb5f44a9c9e33c3202fd1bf7f263 (diff)
downloademacs-2f4453664409ed3f7131afc6113bcffb16f22750.tar.gz
emacs-2f4453664409ed3f7131afc6113bcffb16f22750.zip
* callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
instead of XSYMBOL and name field.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index fec25a3411a..63f32418954 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -597,7 +597,7 @@ supply if the command inquires which events were used to invoke it. */)
597 if (next_event >= key_count) 597 if (next_event >= key_count)
598 error ("%s must be bound to an event with parameters", 598 error ("%s must be bound to an event with parameters",
599 (SYMBOLP (function) 599 (SYMBOLP (function)
600 ? (char *) XSYMBOL (function)->name->data 600 ? (char *) XSTRING (SYMBOL_NAME (function))->data
601 : "command")); 601 : "command"));
602 args[i] = XVECTOR (keys)->contents[next_event++]; 602 args[i] = XVECTOR (keys)->contents[next_event++];
603 varies[i] = -1; 603 varies[i] = -1;