diff src/regex.c @ 2201:8e39301eac59

[xemacs-hg @ 2004-08-04 19:45:16 by james] Fix previous "fix".
author james
date Wed, 04 Aug 2004 19:45:17 +0000
parents 35540b6052a9
children 04bc9d2f42c7
line wrap: on
line diff
--- a/src/regex.c	Tue Aug 03 22:08:48 2004 +0000
+++ b/src/regex.c	Wed Aug 04 19:45:17 2004 +0000
@@ -118,13 +118,6 @@
 
 #include <string.h>
 
-/* This is for other GNU distributions with internationalized messages.  */
-#if defined (I18N3) && (defined (HAVE_LIBINTL_H) || defined (_LIBC))
-# include <libintl.h>
-#else
-# define gettext(msgid) (msgid)
-#endif
-
 /* Define the syntax stuff for \<, \>, etc.  */
 
 /* This must be nonzero for the wordchar and notwordchar pattern
@@ -174,6 +167,13 @@
 
 #endif /* emacs */
 
+/* This is for other GNU distributions with internationalized messages.  */
+#if defined (I18N3) && (defined (HAVE_LIBINTL_H) || defined (_LIBC))
+# include <libintl.h>
+#else
+# define gettext(msgid) (msgid)
+#endif
+
 /* Under XEmacs, this is needed because we don't define it elsewhere. */
 #ifdef SWITCH_ENUM_BUG
 #define SWITCH_ENUM_CAST(x) ((int)(x))