Changeset 2581 for neercs/trunk
- Timestamp:
- Jul 23, 2008, 11:54:24 PM (13 years ago)
- Location:
- neercs/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/input.c
r2495 r2581 129 129 break; 130 130 case 'h': 131 case '?': 131 132 case 0x08: //CACA_KEY_CTRL_H: 132 133 screen_list->help = !screen_list->help; -
neercs/trunk/src/main.c
r2500 r2581 334 334 char *str = NULL; 335 335 int size = 0; 336 /* CTRL-A has been pressed before, handle this as a command */ 337 if(command) 336 /* CTRL-A has been pressed before, handle this as a 337 * command, except that CTRL-A a sends literal CTRL-A */ 338 if(command && (c != 'a')) 338 339 { 339 340 command = 0; … … 371 372 } 372 373 default: 374 /* CTRL-A a sends literal CTRL-A */ 375 if (command && (c == 'a')) 376 { 377 c = 0x01; 378 } 373 379 /* Normal key, convert it if needed */ 374 380 str = convert_input_ansi(&c, &size);
Note: See TracChangeset
for help on using the changeset viewer.