comparison src/events.c @ 124:9b50b4588a93 r20-1b15

Import from CVS: tag r20-1b15
author cvs
date Mon, 13 Aug 2007 09:26:39 +0200
parents d2f30a177268
children 538048ae2ab8
comparison
equal deleted inserted replaced
123:c77884c6318d 124:9b50b4588a93
1095 motion The mouse moved. 1095 motion The mouse moved.
1096 process Input is available from a subprocess. 1096 process Input is available from a subprocess.
1097 timeout A timeout has expired. 1097 timeout A timeout has expired.
1098 eval This causes a specified action to occur when dispatched. 1098 eval This causes a specified action to occur when dispatched.
1099 magic Some window-system-specific event has occurred. 1099 magic Some window-system-specific event has occurred.
1100 dead The event has been deallocated.
1101 empty The event has been allocated but not assigned. 1100 empty The event has been allocated but not assigned.
1102 1101
1103 */ 1102 */
1104 (event)) 1103 (event))
1105 { 1104 {
1134 case magic_eval_event: 1133 case magic_eval_event:
1135 return Qmagic; 1134 return Qmagic;
1136 1135
1137 case empty_event: 1136 case empty_event:
1138 return Qempty; 1137 return Qempty;
1139
1140 case dead_event:
1141 return Qdead;
1142 1138
1143 default: 1139 default:
1144 abort (); 1140 abort ();
1145 return Qnil; 1141 return Qnil;
1146 } 1142 }
1848 props = Fcons (Qfunction, Fcons (Fevent_function (event), props)); 1844 props = Fcons (Qfunction, Fcons (Fevent_function (event), props));
1849 break; 1845 break;
1850 1846
1851 case magic_eval_event: 1847 case magic_eval_event:
1852 case magic_event: 1848 case magic_event:
1853 case dead_event:
1854 case empty_event: 1849 case empty_event:
1855 break; 1850 break;
1856 1851
1857 default: 1852 default:
1858 abort (); 1853 abort ();