Put back a bug fix which accidently got reverted.
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 12 Dec 2003 08:32:08 +0000 (08:32 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Fri, 12 Dec 2003 08:32:08 +0000 (08:32 +0000)
src/glob.c
src/output.c

index 235399c0be300779e1cbdafcc5a2f4bc61f8d76f..b7ec50a37b18356fc0a4f7eb10fd597dd6286886 100644 (file)
@@ -133,9 +133,7 @@ init_glob (int argc unused, char **argv)
 {
   /* FIXME: Allow i18n of other locale items (besides LC_MESSAGES). */
 #if ENABLE_NLS
-#if LC_MESSAGE
   setlocale (LC_MESSAGES, "");
-#endif
   setlocale (LC_MONETARY, "");
   bindtextdomain (PACKAGE, locale_dir);
   textdomain (PACKAGE);
index 8cf5bafa287ff7ef4bd75b8dee42c2b925224288..86e8534cedad1efcc659f7cc81346406a707887d 100644 (file)
@@ -287,6 +287,8 @@ outp_read_devices (void)
   where.line_number = 0;
   err_push_file_locator (&where);
 
+  ds_init (NULL, &line, 128);
+
   if (init_fn == NULL)
     {
       msg (IE, _("Cannot find output initialization file.  Use `-vv' to view "
@@ -302,7 +304,6 @@ outp_read_devices (void)
       goto exit;
     }
 
-  ds_init (NULL, &line, 128);
   for (;;)
     {
       char *cp;