Mercurial > hg > xemacs-beta
comparison src/events.c @ 153:25f70ba0133c r20-3b3
Import from CVS: tag r20-3b3
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:38:25 +0200 |
parents | 538048ae2ab8 |
children | 6b37e6ddd302 |
comparison
equal
deleted
inserted
replaced
152:4c132ee2d62b | 153:25f70ba0133c |
---|---|
419 if (EQ (event, Vunread_command_event)) | 419 if (EQ (event, Vunread_command_event)) |
420 abort (); | 420 abort (); |
421 for (i = 0; i < XVECTOR (Vthis_command_keys)->size; i++) | 421 for (i = 0; i < XVECTOR (Vthis_command_keys)->size; i++) |
422 if (EQ (event, vector_data (XVECTOR (Vthis_command_keys)) [i])) | 422 if (EQ (event, vector_data (XVECTOR (Vthis_command_keys)) [i])) |
423 abort (); | 423 abort (); |
424 for (i = 0; i < XVECTOR (Vrecent_keys_ring)->size; i++) | 424 if (!NILP (Vrecent_keys_ring)) |
425 if (EQ (event, vector_data (XVECTOR (Vrecent_keys_ring)) [i])) | 425 { |
426 abort (); | 426 for (i = 0; i < XVECTOR (Vrecent_keys_ring)->size; i++) |
427 if (EQ (event, vector_data (XVECTOR (Vrecent_keys_ring)) [i])) | |
428 abort (); | |
429 } | |
427 } | 430 } |
428 #endif /* 0 */ | 431 #endif /* 0 */ |
429 | 432 |
430 assert (!EQ (event, Vevent_resource)); | 433 assert (!EQ (event, Vevent_resource)); |
431 deinitialize_event (event); | 434 deinitialize_event (event); |