cosmetic fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2033 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
ace1037faf
commit
59f5e04fa8
11
src/nano.c
11
src/nano.c
|
@ -2354,13 +2354,10 @@ void do_justify(bool full_justify)
|
||||||
* to the next line after justifying the current line. */
|
* to the next line after justifying the current line. */
|
||||||
|
|
||||||
/* We save these global variables to be restored if the user
|
/* We save these global variables to be restored if the user
|
||||||
* unjustifies. Note we don't need to save totlines. */
|
* unjustifies. Note that we don't need to save totlines. */
|
||||||
int current_x_save = current_x;
|
int current_x_save = current_x, current_y_save = current_y;
|
||||||
int current_y_save = current_y;
|
long flags_save = flags, totsize_save = totsize;
|
||||||
long flags_save = flags;
|
filestruct *edittop_save = edittop, *current_save = current;
|
||||||
long totsize_save = totsize;
|
|
||||||
filestruct *current_save = current;
|
|
||||||
filestruct *edittop_save = edittop;
|
|
||||||
#ifndef NANO_SMALL
|
#ifndef NANO_SMALL
|
||||||
filestruct *mark_beginbuf_save = mark_beginbuf;
|
filestruct *mark_beginbuf_save = mark_beginbuf;
|
||||||
int mark_beginx_save = mark_beginx;
|
int mark_beginx_save = mark_beginx;
|
||||||
|
|
Loading…
Reference in New Issue