comparison src/events.c @ 2842:ade0c13d91a3

[xemacs-hg @ 2005-07-03 21:47:59 by aidan] Move Qkey_mapping to general-slots.h.
author aidan
date Sun, 03 Jul 2005 21:48:01 +0000
parents a25c824ed558
children b95fe16005fd
comparison
equal deleted inserted replaced
2841:b73c66cbc652 2842:ade0c13d91a3
1338 { 1338 {
1339 Lisp_Object thekeysym = XEVENT_KEY_KEYSYM (event); 1339 Lisp_Object thekeysym = XEVENT_KEY_KEYSYM (event);
1340 1340
1341 if (CHAR_OR_CHAR_INTP (code = Fget (thekeysym, Qascii_character, Qnil))) 1341 if (CHAR_OR_CHAR_INTP (code = Fget (thekeysym, Qascii_character, Qnil)))
1342 { 1342 {
1343 extern Lisp_Object Qkey_mapping;
1344
1345 c = XCHAR_OR_CHAR_INT (code); 1343 c = XCHAR_OR_CHAR_INT (code);
1346 warn_when_safe(Qkey_mapping, Qwarning, 1344 warn_when_safe(Qkey_mapping, Qwarning,
1347 "Obsolete key binding technique.\n" 1345 "Obsolete key binding technique.\n"
1348 1346
1349 "Some code you're using bound %s to `self-insert-command' and messed around\n" 1347 "Some code you're using bound %s to `self-insert-command' and messed around\n"