On 4/20/06, erik quanstrom <[EMAIL PROTECTED]> wrote:
> es scans the bit inside the {} as a string and does not parse it until it is 
> used.

no.

body    : cmd                   { $$ = $1; }
        | cmdsan body           { $$ = mkseq("%seq", $1, $2); }
...
comword : param                         { $$ = $1; }
        | '(' nlwords ')'               { $$ = $2; }
        | '{' body '}'                  { $$ = thunkify($2); }

Reply via email to