map_init_nls(): * Find all the printable keys and bind them to self insert */
| 958 | * Find all the printable keys and bind them to self insert |
| 959 | */ |
| 960 | private void |
| 961 | map_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(): |
no outgoing calls
no test coverage detected