| 2083 | } |
| 2084 | |
| 2085 | void |
| 2086 | rl_stuff_char(int c) |
| 2087 | { |
| 2088 | char buf[2]; |
| 2089 | |
| 2090 | buf[0] = (char)c; |
| 2091 | buf[1] = '\0'; |
| 2092 | el_insertstr(e, buf); |
| 2093 | } |
| 2094 | |
| 2095 | static int |
| 2096 | _rl_event_read_char(EditLine *el, char *cp) |
nothing calls this directly
no test coverage detected