aboutsummaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2020-05-04 23:31:59 -0400
committerRuss Cox <rsc@swtch.com>2020-05-04 23:41:15 -0400
commitff74f7cdda7b08da6fe7c8bbcca990305fd6b547 (patch)
treeb09483dbdbc9e6908e2744c680b8d19447ff72c7 /src/cmd
parent7d6a248f2c68d70f58387afc69e73e695c3d940c (diff)
downloadplan9port-ff74f7cdda7b08da6fe7c8bbcca990305fd6b547.tar.gz
plan9port-ff74f7cdda7b08da6fe7c8bbcca990305fd6b547.tar.bz2
plan9port-ff74f7cdda7b08da6fe7c8bbcca990305fd6b547.zip
rc: allow unquoted = in command arguments
dd fans rejoice! Also helps with commands like go test -run=x.
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/rc/parse.c28
-rw-r--r--src/cmd/rc/test.rc9
2 files changed, 27 insertions, 10 deletions
diff --git a/src/cmd/rc/parse.c b/src/cmd/rc/parse.c
index 11be951b..a46931dc 100644
--- a/src/cmd/rc/parse.c
+++ b/src/cmd/rc/parse.c
@@ -14,7 +14,7 @@ static int iswordtok(int tok);
static tree* line(int tok, int *ptok);
static tree* paren(int tok);
static tree* yyredir(int tok, int *ptok);
-static tree* yyword(int tok, int *ptok);
+static tree* yyword(int tok, int *ptok, int eqok);
static tree* word1(int tok, int *ptok);
static tree* words(int tok, int *ptok);
@@ -186,7 +186,7 @@ yyredir(int tok, int *ptok)
break;
case REDIR:
r = yylval.tree;
- w = yyword(yylex(), &tok);
+ w = yyword(yylex(), &tok, 1);
*ptok = dropsp(tok);
r = mung1(r, r->rtype==HERE?heredoc(w):w);
break;
@@ -276,7 +276,7 @@ cmd4(int tok, int *ptok)
tok = dropsp(yylex());
if(tok != '(')
syntax(tok);
- t2 = yyword(yylex(), &tok);
+ t2 = yyword(yylex(), &tok, 1);
switch(tok) {
default:
syntax(tok);
@@ -305,7 +305,7 @@ cmd4(int tok, int *ptok)
case SWITCH:
// | SWITCH word {skipnl();} brace
// {$$=tree2(SWITCH, $2, $4);}
- t1 = yyword(yylex(), &tok);
+ t1 = yyword(yylex(), &tok, 1);
tok = dropnl(tok); // doesn't work in yacc grammar but works here!
t2 = brace(tok);
*ptok = dropsp(yylex());
@@ -328,7 +328,7 @@ cmd4(int tok, int *ptok)
case TWIDDLE:
// | TWIDDLE word words {$$=mung2($1, $2, $3);}
t1 = yylval.tree;
- t2 = yyword(yylex(), &tok);
+ t2 = yyword(yylex(), &tok, 1);
t3 = words(tok, ptok);
return mung2(t1, t2, t3);
@@ -369,11 +369,11 @@ cmd4(int tok, int *ptok)
// but all those keywords have been picked off in the switch above.
// Except NOT, but disallowing that in yacc was likely a mistake anyway:
// there's no ambiguity in not=1 or not x y z.
- t1 = yyword(tok, &tok);
+ t1 = yyword(tok, &tok, 0);
if(tok == '=') {
// assignment
// Note: cmd3: {x=1 true | echo $x} echoes 1.
- t1 = tree2('=', t1, yyword(yylex(), &tok));
+ t1 = tree2('=', t1, yyword(yylex(), &tok, 1));
t2 = cmd3(tok, ptok);
return mung3(t1, t1->child[0], t1->child[1], t2);
}
@@ -385,7 +385,7 @@ cmd4(int tok, int *ptok)
if(tok == REDIR || tok == DUP) {
t1 = tree2(ARGLIST, t1, yyredir(tok, &tok));
} else if(iswordtok(tok)) {
- t1 = tree2(ARGLIST, t1, yyword(tok, &tok));
+ t1 = tree2(ARGLIST, t1, yyword(tok, &tok, 1));
} else {
break;
}
@@ -405,13 +405,13 @@ words(int tok, int *ptok)
t = nil;
tok = dropsp(tok);
while(iswordtok(tok))
- t = tree2(WORDS, t, yyword(tok, &tok));
+ t = tree2(WORDS, t, yyword(tok, &tok, 1));
*ptok = tok;
return t;
}
static tree*
-yyword(int tok, int *ptok)
+yyword(int tok, int *ptok, int eqok)
{
tree *t;
@@ -436,6 +436,8 @@ yyword(int tok, int *ptok)
// word1: keyword | comword
t = word1(tok, &tok);
+ if(tok == '=' && !eqok)
+ goto out;
for(;;) {
if(iswordtok(tok)) {
t = tree2('^', t, word1(tok, &tok));
@@ -448,6 +450,7 @@ yyword(int tok, int *ptok)
}
break;
}
+out:
*ptok = dropsp(tok);
return t;
}
@@ -480,6 +483,10 @@ word1(int tok, int *ptok)
*ptok = yylex();
return t;
+ case '=':
+ *ptok = yylex();
+ return token("=", WORD);
+
case '$':
// comword: '$' word1 {$$=tree1('$', $2);}
// | '$' word1 SUB words ')' {$$=tree2(SUB, $2, $4);}
@@ -547,6 +554,7 @@ iswordtok(int tok)
case '`':
case '(':
case REDIRW:
+ case '=':
return 1;
}
return 0;
diff --git a/src/cmd/rc/test.rc b/src/cmd/rc/test.rc
index 7a83ad17..f667b840 100644
--- a/src/cmd/rc/test.rc
+++ b/src/cmd/rc/test.rc
@@ -74,3 +74,12 @@ OPTIONS=$OPTIONS' /axescount '^`{echo $1 | sed s/-a//}^' def'
# bug in old printfont script - expected more free carats
# OPTIONS=$OPTIONS' /axescount '`{echo $1 | sed s/-a//}' def'
+
+(x) = y
+x=y
+x = y
+
+# works now!
+# x y=z
+# x =y
+# x -flag=y