]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fix: sort the meta sequence #defines in ASCII order
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 26 Sep 2005 02:58:16 +0000 (02:58 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 26 Sep 2005 02:58:16 +0000 (02:58 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3032 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.h

index 1d55a24289e6c9cdee53a1e8eb4472cc9b8789f1..97ecd6dbcb9bddc20ac3a2383c66f1f4a1f6ac53 100644 (file)
@@ -357,8 +357,16 @@ typedef struct rcoption {
 #define NANO_CONTROL_7 31
 #define NANO_CONTROL_8 127
 
+#define NANO_ALT_SPACE ' '
+#define NANO_ALT_LPAREN '('
+#define NANO_ALT_RPAREN ')'
+#define NANO_ALT_COMMA ','
+#define NANO_ALT_PERIOD '.'
 #define NANO_ALT_9 '9'
 #define NANO_ALT_0 '0'
+#define NANO_ALT_LCARAT '<'
+#define NANO_ALT_RCARAT '>'
+#define NANO_ALT_RBRACKET ']'
 #define NANO_ALT_A 'a'
 #define NANO_ALT_B 'b'
 #define NANO_ALT_C 'c'
@@ -385,14 +393,6 @@ typedef struct rcoption {
 #define NANO_ALT_X 'x'
 #define NANO_ALT_Y 'y'
 #define NANO_ALT_Z 'z'
-#define NANO_ALT_PERIOD '.'
-#define NANO_ALT_COMMA ','
-#define NANO_ALT_LPAREN '('
-#define NANO_ALT_RPAREN ')'
-#define NANO_ALT_LCARAT '<'
-#define NANO_ALT_RCARAT '>'
-#define NANO_ALT_RBRACKET ']'
-#define NANO_ALT_SPACE ' '
 
 /* Some semi-changeable keybindings; don't play with these unless you're
  * sure you know what you're doing.  Assume ERR is defined as -1. */