commit bash-20050217 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 13:43:32 -05:00
parent cc87ba64ee
commit 2206f89ab4
45 changed files with 2735 additions and 979 deletions
+2 -1
View File
@@ -1135,7 +1135,7 @@ evalerror (msg)
Base may be >=2 and <=64. If base is <= 36, the numbers are drawn
from [0-9][a-zA-Z], and lowercase and uppercase letters may be used
interchangably. If base is > 36 and <= 64, the numbers are drawn
from [0-9][a-z][A-Z]_@ (a = 10, z = 35, A = 36, Z = 61, _ = 62, @ = 63 --
from [0-9][a-z][A-Z]_@ (a = 10, z = 35, A = 36, Z = 61, @ = 62, _ = 63 --
you get the picture). */
static intmax_t
@@ -1206,6 +1206,7 @@ strlong (num)
else
break;
}
return (val);
}