]> git.wh0rd.org Git - nano.git/commitdiff
more cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 10 Nov 2005 19:56:26 +0000 (19:56 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 10 Nov 2005 19:56:26 +0000 (19:56 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3154 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/text.c

index 67d3fc080faed9ac6c59c72f0e5970b5a6955607..21aa6512c668474ce5d64d85c003df84a6ad928d 100644 (file)
@@ -1131,17 +1131,18 @@ void do_justify(bool full_justify)
 
     /* We save these variables to be restored if the user
      * unjustifies. */
+    filestruct *edittop_save = openfile->edittop;
+    filestruct *current_save = openfile->current;
     size_t current_x_save = openfile->current_x;
     size_t pww_save = openfile->placewewant;
     ssize_t current_y_save = openfile->current_y;
-    bool modified_save = openfile->modified;
     size_t totsize_save = openfile->totsize;
-    filestruct *edittop_save = openfile->edittop;
-    filestruct *current_save = openfile->current;
 #ifndef NANO_SMALL
     filestruct *mark_begin_save = openfile->mark_begin;
     size_t mark_begin_x_save = openfile->mark_begin_x;
 #endif
+    bool modified_save = openfile->modified;
+
     int kbinput;
     bool meta_key, func_key, s_or_t, ran_func, finished;