| 286 | /* Return a new, initialized line record. */ |
| 287 | |
| 288 | static struct line * |
| 289 | new_line_control (void) |
| 290 | { |
| 291 | struct line *p = xmalloc (sizeof *p); |
| 292 | |
| 293 | p->next = NULL; |
| 294 | clear_line_control (p); |
| 295 | |
| 296 | return p; |
| 297 | } |
| 298 | |
| 299 | /* Record LINE_START, which is the address of the start of a line |
| 300 | of length LINE_LEN in the large buffer, in the lines buffer of B. */ |
no test coverage detected