Fixed some issues with internationalisation
[pspp-builds.git] / src / pfm-read.c
index 99a7931ae6129679aa02cd0e08ec9c3d87010d33..0a13086281c757ecc4733fa764e6a679436731a7 100644 (file)
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
    02111-1307, USA. */
 
-/* AIX requires this to be the first thing in the file.  */
 #include <config.h>
-#if __GNUC__
-#define alloca __builtin_alloca
-#else
-#if HAVE_ALLOCA_H
-#include <alloca.h>
-#else
-#ifdef _AIX
-#pragma alloca
-#else
-#ifndef alloca                 /* predefined by HP cc +Olibcalls */
-char *alloca ();
-#endif
-#endif
-#endif
-#endif
-
 #include "pfm.h"
 #include <assert.h>
 #include <stdarg.h>
@@ -636,7 +619,7 @@ convert_format (struct file_handle *h, int fmt[3], struct fmt_spec *v,
 {
   if (fmt[0] < 0
       || (size_t) fmt[0] >= sizeof translate_fmt / sizeof *translate_fmt)
-    lose ((h, _("%s: Bad format specifier byte %d."), vv->name, fmt[0]));
+    lose ((h, _("%s: Bad format specifier byte (%d)."), vv->name, fmt[0]));
 
   v->type = translate_fmt[fmt[0]];
   v->w = fmt[1];