mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-02 01:40:49 +02:00
builtins now return success if supplied --help; use groff to build HTML man pages; reset mbstate if $'...' strings read an invalid multibyte sequence; read -t 0 now looks at other options (-n/-N/-d) and sets the terminal state appropriately
This commit is contained in:
@@ -1588,7 +1588,7 @@ readtok (void)
|
||||
lasttok = curtok;
|
||||
curtok = STR;
|
||||
}
|
||||
else if (DIGIT(c))
|
||||
else if (DIGIT (c) || (c == locale_decpoint () && DIGIT (*cp)))
|
||||
{
|
||||
/* Let strtod figure out where to end the floating-point value and let
|
||||
the parser figure out what's valid. */
|
||||
|
||||
Reference in New Issue
Block a user