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:
Chet Ramey
2025-10-01 10:44:10 -04:00
parent cf8a2518c8
commit fbd078be0a
35 changed files with 1666 additions and 1479 deletions
+1 -1
View File
@@ -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. */