* el-compatible wrapper around rl_complete; needed for key binding */ ARGSUSED */
| 569 | */ |
| 570 | /* ARGSUSED */ |
| 571 | unsigned char |
| 572 | _el_fn_complete(EditLine *el, int ch __attribute__((__unused__))) |
| 573 | { |
| 574 | return (unsigned char)fn_complete(el, NULL, NULL, |
| 575 | break_chars, NULL, NULL, (size_t)100, |
| 576 | NULL, NULL, NULL, NULL); |
| 577 | } |
nothing calls this directly
no test coverage detected