- Timestamp:
- Jul 8, 2002, 10:37:21 PM (23 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- e1c4636
- Parents:
- 8df36cc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
keymap.c
r1aee7d9 r10b866d 201 201 } 202 202 203 owl_function_debugmsg("processkey: got key %d, active keymap %s, stack at %d", 204 j, kh->active->name, kh->kpstackpos); 203 /* 204 owl_function_debugmsg("processkey: got key %d, active keymap %s, stack at %d", 205 j, kh->active->name, kh->kpstackpos); 206 */ 205 207 206 208 /* deal with ESC prefixing */ … … 236 238 match = owl_keybinding_match(kb, kh->kpstack); 237 239 if (match == 1) { /* subset match */ 238 owl_function_debugmsg("processkey: found subset match in %s", km->name); 240 241 /* owl_function_debugmsg("processkey: found subset match in %s", km->name); */ 239 242 return(0); 240 243 } else if (match == 2) { /* exact match */ 241 owl_function_debugmsg("processkey: found exact match in %s", km->name);244 /* owl_function_debugmsg("processkey: found exact match in %s", km->name); */ 242 245 owl_keybinding_execute(kb, j); 243 246 owl_keyhandler_reset(kh); … … 252 255 /* see if a default action exists for the active keymap */ 253 256 if (kh->active->default_fn && kh->kpstackpos<1) { 254 owl_function_debugmsg("processkey: executing default_fn"); 257 /*owl_function_debugmsg("processkey: executing default_fn");*/ 258 255 259 kh->active->default_fn(j); 256 260 owl_keyhandler_reset(kh);
Note: See TracChangeset
for help on using the changeset viewer.