tweaks: remove unnecessary variable initializations

master
David Lawrence Ramsey 2019-01-08 16:02:21 -06:00 committed by Benno Schulenberg
parent 610be482fa
commit 0ac04347d5
1 changed files with 2 additions and 2 deletions

View File

@ -1978,9 +1978,9 @@ void do_justify(bool full_justify)
/* Length of the quote part of the current paragraph. */ /* Length of the quote part of the current paragraph. */
size_t par_len; size_t par_len;
/* Number of lines in the current paragraph. */ /* Number of lines in the current paragraph. */
filestruct *first_par_line = NULL; filestruct *first_par_line;
/* Will be the first line of the justified paragraph(s), if any. */ /* Will be the first line of the justified paragraph(s), if any. */
filestruct *last_par_line = NULL; filestruct *last_par_line;
/* Will be the line after the last line of the justified /* Will be the line after the last line of the justified
* paragraph(s), if any. */ * paragraph(s), if any. */
size_t x_for_last; size_t x_for_last;