fix export environment if a local variable inherits the export attribute from a variable with the same name at a previous scope; changes to help builtin and glob pattern arguments; fix for fpurge declaration in a source file; man page typesetting updates

This commit is contained in:
Chet Ramey
2025-11-19 10:18:54 -05:00
parent 2fd02c8387
commit bcac47f08a
10 changed files with 67 additions and 32 deletions
+4
View File
@@ -1607,6 +1607,10 @@ readtok (void)
c = GEQ;
else if ((c == LT) && (c1 == EQ))
c = LEQ;
else if ((c == '&') && (c1 == '&'))
c = LAND;
else if ((c == '|') && (c1 == '|'))
c = LOR;
else if ((c == '*') && (c1 == '*'))
c = POWER;
else if ((c == '-' || c == '+') && c1 == c && curtok == STR)