| 988 | FINISH, which must be in the next_break chain from word. */ |
| 989 | |
| 990 | static void |
| 991 | put_paragraph (WORD *finish) |
| 992 | { |
| 993 | put_line (word, first_indent); |
| 994 | for (WORD *w = word->next_break; w != finish; w = w->next_break) |
| 995 | put_line (w, other_indent); |
| 996 | } |
| 997 | |
| 998 | /* Output to stdout the line beginning with word W, beginning in column |
| 999 | INDENT, including the prefix (if any). */ |
no test coverage detected