mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-05 00:01:15 -03:00
Fixes to api documentation, added .PHONY to makefile actions, made a few private functions static
darcs-hash:20060123204014-ac50b-b9d2a10c7f00945b5d9d244cb3b8c1489fe280de.gz
This commit is contained in:
13
input.c
13
input.c
@@ -196,7 +196,18 @@ const wchar_t code_arr[] =
|
||||
*/
|
||||
static hash_table_t all_mappings;
|
||||
|
||||
static array_list_t *current_mode_mappings, *current_application_mappings, *global_mappings;
|
||||
/**
|
||||
Mappings for the current input mode
|
||||
*/
|
||||
static array_list_t *current_mode_mappings;
|
||||
/**
|
||||
Mappings for the current application
|
||||
*/
|
||||
static array_list_t *current_application_mappings;
|
||||
/**
|
||||
Global mappings
|
||||
*/
|
||||
static array_list_t *global_mappings;
|
||||
|
||||
/**
|
||||
Number of nested conditional statement levels that are not evaluated
|
||||
|
||||
Reference in New Issue
Block a user