]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fix: reorder enums
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 May 2004 02:33:27 +0000 (02:33 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 May 2004 02:33:27 +0000 (02:33 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1765 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.h

index 6acb2f794c8e74f390c1b60107c6aee3da033f65..096bdb959928ef30c90e4b18b5734b52a7862fe3 100644 (file)
@@ -459,14 +459,14 @@ typedef struct historyheadtype {
 #define VIEW 1
 #define NOVIEW 0
 
-typedef enum {
-    TOP, CENTER, NONE
-} topmidnone;
-
 typedef enum {
     JUSTIFY, BEGIN, END
 } justbegend;
 
+typedef enum {
+    TOP, CENTER, NONE
+} topmidnone;
+
 /* Minimum editor window rows required for nano to work correctly. */
 #define MIN_EDITOR_ROWS 3