Commit 684e7ebd authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

comment fix: justify_format() could have just left out a space at the

end of the line instead of removing it


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1750 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 8e4adcda
Showing with 1 addition and 1 deletion
+1 -1
......@@ -2575,7 +2575,7 @@ int do_justify(int full_justify)
/* If the line we were on before still exists, and it was
* not the last line of the paragraph, add a space to the
* end of it to replace the one removed by
* end of it to replace the one removed or left out by
* justify_format(). */
if (current->prev != NULL && par_len > 1) {
size_t prev_line_len = strlen(current->prev->data);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment