Home | History | Annotate | Download | only in sed

Lines Matching defs:words

95 /* Size of paragraph buffer in words.  Longer paragraphs are handled
182 /* The words of a paragraph -- longer paragraphs are handled neatly
184 static WORD words[MAXWORDS];
259 word_limit = words;
299 after the prefix, and the following indent, and break it into words.
312 end_of_word = &words[MAXWORDS - 2];
389 hitting the limit on the number of words or characters. */
409 for (w = words->next_break; w != word_limit; w = w->next_break)
421 /* Copy words from split_point down to word -- we use memmove because
424 memmove ((char *) words, (char *) split_point,
426 word_limit -= split_point - words;
445 for (start = word_limit - 1; start >= words; start--)
448 len = start == words ? first_indent : other_indent;
461 if (start == words && last_line_length > 0)
469 len += (w - 1)->space + w->length; /* w > start >= words */
488 if (this > words)
499 else if (this > words + 1 && (this - 2)->final)
540 put_line (words, first_indent);
541 for (w = words->next_break; w != finish; w = w->next_break)