Mercurial > hg > xemacs-beta
diff 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 |
line wrap: on
line diff
--- a/src/keymap.c Sun Feb 06 23:46:17 2011 +0000 +++ b/src/keymap.c Mon Feb 07 00:03:41 2011 +0000 @@ -4102,7 +4102,7 @@ if (bit1 != bit2) return bit1 < bit2; else - return map_keymap_sort_predicate (obj1, obj2, pred, key_func); + return map_keymap_sort_predicate (pred, key_func, obj1, obj2); } /* Elide 2 or more consecutive numeric keysyms bound to the same thing,