comparison src/keymap.c @ 5352:cc7d0e19173c

Correct the order of arguments to map_keymap_sort_predicate(), keymap.c. 2011-02-07 Aidan Kehoe <kehoea@parhasard.net> * keymap.c (describe_map_sort_predicate): Correct the order of arguments to map_keymap_sort_predicate() here. Thanks again, Mats.
author Aidan Kehoe <kehoea@parhasard.net>
date Mon, 07 Feb 2011 00:03:41 +0000
parents 94bbd4792049
children 0af042a0c116
comparison
equal deleted inserted replaced
5351:b5561bfd5061 5352:cc7d0e19173c
4100 bit1 = XINT (XCDR (obj1)); 4100 bit1 = XINT (XCDR (obj1));
4101 bit2 = XINT (XCDR (obj2)); 4101 bit2 = XINT (XCDR (obj2));
4102 if (bit1 != bit2) 4102 if (bit1 != bit2)
4103 return bit1 < bit2; 4103 return bit1 < bit2;
4104 else 4104 else
4105 return map_keymap_sort_predicate (obj1, obj2, pred, key_func); 4105 return map_keymap_sort_predicate (pred, key_func, obj1, obj2);
4106 } 4106 }
4107 4107
4108 /* Elide 2 or more consecutive numeric keysyms bound to the same thing, 4108 /* Elide 2 or more consecutive numeric keysyms bound to the same thing,
4109 or 2 or more symbolic keysyms that are bound to the same thing and 4109 or 2 or more symbolic keysyms that are bound to the same thing and
4110 have consecutive character-set-properties. 4110 have consecutive character-set-properties.