| 650 | /* Output any lines left after all regexps have been processed. */ |
| 651 | |
| 652 | static void |
| 653 | dump_rest_of_file (void) |
| 654 | { |
| 655 | struct cstring *line; |
| 656 | |
| 657 | while ((line = remove_line ()) != NULL) |
| 658 | save_line_to_file (line); |
| 659 | } |
| 660 | |
| 661 | /* Handle an attempt to read beyond EOF under the control of record P, |
| 662 | on iteration REPETITION if nonzero. */ |
no test coverage detected