commit bc6a36e40d245367ddedafabf80c8380da943626
parent eb5092226d9a6a17546a6bdd529961d05b0c547a
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Tue, 22 Mar 2005 20:17:38 +0000
move macro definition
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2421 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/nano.c b/src/nano.c
@@ -926,6 +926,12 @@ void renumber(filestruct *fileptr)
}
}
+#ifdef HAVE_GETOPT_LONG
+#define print1opt(shortflag, longflag, desc) print1opt_full(shortflag, longflag, desc)
+#else
+#define print1opt(shortflag, longflag, desc) print1opt_full(shortflag, desc)
+#endif
+
/* Print one usage string to the screen. This cuts down on duplicate
* strings to translate, and leaves out the parts that shouldn't be
* translatable (the flag names). */
diff --git a/src/nano.h b/src/nano.h
@@ -47,12 +47,6 @@
#define charcpy(dest, src, n) memcpy(dest, src, (n) * sizeof(char))
/* Other macros. */
-#ifdef HAVE_GETOPT_LONG
-#define print1opt(shortflag, longflag, desc) print1opt_full(shortflag, longflag, desc)
-#else
-#define print1opt(shortflag, longflag, desc) print1opt_full(shortflag, desc)
-#endif
-
#ifdef BROKEN_REGEXEC
#undef regexec
#define regexec(preg, string, nmatch, pmatch, eflags) safe_regexec(preg, string, nmatch, pmatch, eflags)