keymacro_reset(): * Takes all nodes on el->el_keymacro.map and puts them on free list. * Then initializes el->el_keymacro.map with arrow keys * [Always bind the ansi arrow keys?] */
| 156 | * [Always bind the ansi arrow keys?] |
| 157 | */ |
| 158 | protected void |
| 159 | keymacro_reset(EditLine *el) |
| 160 | { |
| 161 | |
| 162 | node__put(el, el->el_keymacro.map); |
| 163 | el->el_keymacro.map = NULL; |
| 164 | return; |
| 165 | } |
| 166 | |
| 167 | |
| 168 | /* keymacro_get(): |
no test coverage detected