| 1920 | } |
| 1921 | |
| 1922 | int |
| 1923 | rl_insert_text(const char *text) |
| 1924 | { |
| 1925 | if (!text || *text == 0) |
| 1926 | return 0; |
| 1927 | |
| 1928 | if (h == NULL || e == NULL) |
| 1929 | rl_initialize(); |
| 1930 | |
| 1931 | if (el_insertstr(e, text) < 0) |
| 1932 | return 0; |
| 1933 | return (int)strlen(text); |
| 1934 | } |
| 1935 | |
| 1936 | /*ARGSUSED*/ |
| 1937 | int |
nothing calls this directly
no test coverage detected