Commit 36e363f5 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

and remove unneccessary initialization

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1744 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
...@@ -2392,7 +2392,7 @@ int do_justify(int full_justify) ...@@ -2392,7 +2392,7 @@ int do_justify(int full_justify)
filestruct *first_par_line = NULL; filestruct *first_par_line = NULL;
/* Will be the first line of the resulting justified paragraph. /* Will be the first line of the resulting justified paragraph.
* For restoring after uncut. */ * For restoring after uncut. */
filestruct *last_par_line = NULL; filestruct *last_par_line;
/* Will be the last line of the result, also for uncut. */ /* Will be the last line of the result, also for uncut. */
filestruct *cutbuffer_save = cutbuffer; filestruct *cutbuffer_save = cutbuffer;
/* When the paragraph gets modified, all lines from the changed /* When the paragraph gets modified, all lines from the changed
......
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