Locale changes from Bruno Haible <haible@clisp.cons.org>.

This commit is contained in:
H.J. Lu
2001-09-19 05:33:36 +00:00
parent 6b819c92c4
commit 3882b01078
129 changed files with 1200 additions and 836 deletions

View File

@@ -19,9 +19,8 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
#include <ctype.h>
#include "libiberty.h"
#include "safe-ctype.h"
#include "cg_arcs.h"
#include "sym_ids.h"
@@ -123,7 +122,7 @@ DEFUN (parse_spec, (spec, sym), char *spec AND Sym * sym)
if (strlen (spec))
{
if (isdigit ((unsigned char) spec[0]))
if (ISDIGIT (spec[0]))
sym->line_num = atoi (spec);
else
sym->name = spec;
@@ -139,7 +138,7 @@ DEFUN (parse_spec, (spec, sym), char *spec AND Sym * sym)
if (!sym->file)
sym->file = &non_existent_file;
}
else if (isdigit ((unsigned char) *spec))
else if (ISDIGIT (*spec))
{
sym->line_num = atoi (spec);
}