Commit e6bbee8f authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

formatting fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2333 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 1 deletion
+2 -1
......@@ -3096,7 +3096,8 @@ void do_justify(bool full_justify)
size_t prev_line_len = strlen(current->prev->data);
if (par_len > 1) {
current->prev->data = charealloc(current->prev->data,
current->prev->data =
charealloc(current->prev->data,
prev_line_len + 2);
current->prev->data[prev_line_len] = ' ';
current->prev->data[prev_line_len + 1] = '\0';
......
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