From: Chris Allegretta Date: Fri, 5 Apr 2002 23:33:09 +0000 (+0000) Subject: - nano.h: - NANO_ALT_COMMAND and NANO_ALT_PERIOD were reversed (lol) (David Benbennick) X-Git-Tag: v1.1.9~30 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=66f373f3e7d39d94916427d242ae51441dbc027e;p=nano.git - nano.h: - NANO_ALT_COMMAND and NANO_ALT_PERIOD were reversed (lol) (David Benbennick) git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1169 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 3bf4e2d8..aecdb22c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ CVS code - +- nano.h: + - NANO_ALT_COMMAND and NANO_ALT_PERIOD were reversed (lol) + (David Benbennick). - nano.spec.in: - Don't put Chris' name as the Packager in the distribution by default (Im an idiot). diff --git a/nano.h b/nano.h index 79527f43..42641535 100644 --- a/nano.h +++ b/nano.h @@ -223,8 +223,8 @@ typedef struct colortype { #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_PERIOD '.' +#define NANO_ALT_COMMA ',' #define NANO_ALT_LCARAT '<' #define NANO_ALT_RCARAT '>' #define NANO_ALT_BRACKET ']'