ed_end_of_file(): * Indicate end of file * [^D] */
| 51 | * [^D] |
| 52 | */ |
| 53 | protected el_action_t |
| 54 | /*ARGSUSED*/ |
| 55 | ed_end_of_file(EditLine *el, Int c __attribute__((__unused__))) |
| 56 | { |
| 57 | |
| 58 | re_goto_bottom(el); |
| 59 | *el->el_line.lastchar = '\0'; |
| 60 | return CC_EOF; |
| 61 | } |
| 62 | |
| 63 | |
| 64 | /* ed_insert(): |
no test coverage detected