mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-29 16:39:53 +02:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user