In keyboard.c line 274 you can see this : *if ((merge & DENEMO_INTERACTIVE) && (merge & DENEMO_MERGING) && new_command)*
The merge value is an integer, but when you look at the call graph you can see that it comes from a boolean in load_xml_keymap ( load_xml_keymap (gchar * filename, gboolean interactive) ). So merge value is always 0 or 1. That makes (merge & DENEMO_INTERACTIVE) always false, and the whole if block useless. This block just displays some test. Should we keep it? ** -- Éloi Rivard - [email protected] « On perd plus à être indécis qu'à se tromper. »
_______________________________________________ Denemo-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/denemo-devel
