tweaks: improve a comment, to better match the changed code
parent
66cd897dc4
commit
4a70c1393f
|
@ -180,10 +180,9 @@ void do_para_begin(filestruct **line)
|
||||||
*line = (*line)->prev;
|
*line = (*line)->prev;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Move down to the beginning of the last line of the current paragraph;
|
/* Move down to the last line of the current paragraph; then move down
|
||||||
* then move down one line farther if there is such a line, or to the
|
* one line farther if there is such a line. Return FALSE when we could
|
||||||
* end of the last line if not. Return FALSE when we stepped to the
|
* step one line further, and TRUE otherwise. */
|
||||||
* line beyond the last line of the paragraph, and TRUE otherwise. */
|
|
||||||
bool do_para_end(filestruct **line)
|
bool do_para_end(filestruct **line)
|
||||||
{
|
{
|
||||||
while ((*line)->next != NULL && !inpar(*line))
|
while ((*line)->next != NULL && !inpar(*line))
|
||||||
|
|
Loading…
Reference in New Issue