comparison src/callint.c @ 112434:9de5a68b57e1

Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
author Paul Eggert <eggert@cs.ucla.edu>
date Sat, 22 Jan 2011 18:56:06 -0800
parents 42e22c4f06b7
children
comparison
equal deleted inserted replaced
112433:7b649f6eac4f 112434:9de5a68b57e1
644 644
645 case 'e': /* The invoking event. */ 645 case 'e': /* The invoking event. */
646 if (next_event >= key_count) 646 if (next_event >= key_count)
647 error ("%s must be bound to an event with parameters", 647 error ("%s must be bound to an event with parameters",
648 (SYMBOLP (function) 648 (SYMBOLP (function)
649 ? (char *) SDATA (SYMBOL_NAME (function)) 649 ? SSDATA (SYMBOL_NAME (function))
650 : "command")); 650 : "command"));
651 args[i] = AREF (keys, next_event); 651 args[i] = AREF (keys, next_event);
652 next_event++; 652 next_event++;
653 varies[i] = -1; 653 varies[i] = -1;
654 654
972 972
973 defsubr (&Sinteractive); 973 defsubr (&Sinteractive);
974 defsubr (&Scall_interactively); 974 defsubr (&Scall_interactively);
975 defsubr (&Sprefix_numeric_value); 975 defsubr (&Sprefix_numeric_value);
976 } 976 }
977