+2003-08-31 Bruno Haible <bruno@clisp.org>
+
+ * format-gcc-internal.c (isdigit): Remove unused macro.
+ * format-perl-brace.c (isdigit): Likewise.
+
2003-09-01 Guido Flohr <guido@imperia.net>
* x-perl.c (extract_balanced): Access the global last_token.
struct unnumbered_arg *unnumbered;
};
-/* Locale independent test for a decimal digit.
- Argument can be 'char' or 'unsigned char'. (Whereas the argument of
- <ctype.h> isdigit must be an 'unsigned char'.) */
-#undef isdigit
-#define isdigit(c) ((unsigned int) ((c) - '0') < 10)
-
static void *
format_parse (const char *format, char **invalid_reason)
struct named_arg *named;
};
-/* Locale independent test for a decimal digit.
- Argument can be 'char' or 'unsigned char'. (Whereas the argument of
- <ctype.h> isdigit must be an 'unsigned char'.) */
-#undef isdigit
-#define isdigit(c) ((unsigned int) ((c) - '0') < 10)
-
static int
named_arg_compare (const void *p1, const void *p2)