MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / map_init_nls

Function map_init_nls

extern/editline/src/map.c:960–970  ·  view source on GitHub ↗

map_init_nls(): * Find all the printable keys and bind them to self insert */

Source from the content-addressed store, hash-verified

958 * Find all the printable keys and bind them to self insert
959 */
960private void
961map_init_nls(EditLine *el)
962{
963 int i;
964
965 el_action_t *map = el->el_map.key;
966
967 for (i = 0200; i <= 0377; i++)
968 if (Isprint(i))
969 map[i] = ED_INSERT;
970}
971
972
973/* map_init_meta():

Callers 2

map_init_viFunction · 0.85
map_init_emacsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected