Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2005-08-30 01:34:09 -0700 (Tue, 30 Aug 2005)
Revision: 1430
Log message:
Further fixing shell parser's precendences list:
- The pipe has higher precedence that ";" :
"foo1; foo2 | foo3" should redirect only foo2's output, not foo1's.
Now the precedence list looks as follows:
%nonassoc TokAmp
%right TokSemiColon
%right TokPipe
%right TokOr
%right TokAnd
%nonassoc TokGreaterThan TokGreaterGreaterThan TokLessTh
Changes | Path |
+4 -1 | omake/src/shell/omake_shell_parse.mly |