comparison src/events.c @ 4962:e813cf16c015

merge
author Ben Wing <ben@xemacs.org>
date Mon, 01 Feb 2010 05:29:05 -0600
parents 19a72041c5ed 6ef8256a020a
children d4f666cda5e6 6f2158fa75ed b5df3737028a
comparison
equal deleted inserted replaced
4961:b90f8cf474e0 4962:e813cf16c015
394 } 394 }
395 write_ascstring (printcharfun, ">"); 395 write_ascstring (printcharfun, ">");
396 } 396 }
397 397
398 static int 398 static int
399 event_equal (Lisp_Object obj1, Lisp_Object obj2, int UNUSED (depth)) 399 event_equal (Lisp_Object obj1, Lisp_Object obj2, int UNUSED (depth),
400 int UNUSED (foldcase))
400 { 401 {
401 Lisp_Event *e1 = XEVENT (obj1); 402 Lisp_Event *e1 = XEVENT (obj1);
402 Lisp_Event *e2 = XEVENT (obj2); 403 Lisp_Event *e2 = XEVENT (obj2);
403 404
404 if (e1->event_type != e2->event_type) return 0; 405 if (e1->event_type != e2->event_type) return 0;