Imported from ../bash-2.05a.tar.gz.

This commit is contained in:
Jari Aalto 2001-11-13 17:56:06 +00:00
commit f73dda092b
303 changed files with 37069 additions and 28812 deletions

View file

@ -16,7 +16,7 @@
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
#include "chartypes.h"
#include "builtins.h"
#include "shell.h"
@ -37,7 +37,7 @@ munge_list (list)
for (l = list; l; l = l->next)
{
arg = l->word->word;
if (arg[0] != '-' || arg[1] == '-' || (isdigit(arg[1]) == 0))
if (arg[0] != '-' || arg[1] == '-' || (DIGIT(arg[1]) == 0))
return;
/* We have -[0-9]* */
wd = make_bare_word (arg+1);