Enlightenment CVS committal Author : kwo Project : e16 Module : e
Dir : e16/e/src Modified Files: aclass.c Log Message: Fix key bindings for keysym names longer than 15 chars. =================================================================== RCS file: /cvsroot/enlightenment/e16/e/src/aclass.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -3 -r1.9 -r1.10 --- aclass.c 10 Feb 2005 18:47:15 -0000 1.9 +++ aclass.c 12 Feb 2005 19:44:16 -0000 1.10 @@ -463,12 +463,12 @@ ActionDecode(const char *line) { Action *aa; - char ev[16], key[128], mod[16], *s; + char ev[16], mod[16], key[128], *s; int len, event, modifiers, button; char anymod, anybut, anykey; len = -1; - sscanf(line, "%15s %127s %15s %n", ev, mod, key, &len); + sscanf(line, "%15s %15s %127s %n", ev, mod, key, &len); if (len <= 0) return NULL; ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs