From 0d29555a1364c113296089907a1c4f77583bc26a Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Tue, 25 May 2004 02:33:27 +0000
Subject: [PATCH] cosmetic fix: reorder enums

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1765 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
---
 src/nano.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/nano.h b/src/nano.h
index 6acb2f79..096bdb95 100644
--- a/src/nano.h
+++ b/src/nano.h
@@ -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
 
-- 
GitLab