From: Russ Cox Date: Wed, 17 Sep 2008 21:09:44 +0000 (-0700) Subject: Linux bison rejects // comments outside { code snippets } X-Git-Tag: weekly.2009-11-06~3187 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f0635bbfaab3de0684eafc7227f52b6242de18b0;p=gostls13.git Linux bison rejects // comments outside { code snippets } R=ken DELTA=1 (0 added, 0 deleted, 1 changed) OCL=15444 CL=15446 --- diff --git a/src/cmd/gc/go.y b/src/cmd/gc/go.y index 15b0b8bd54..dedef05d52 100644 --- a/src/cmd/gc/go.y +++ b/src/cmd/gc/go.y @@ -951,7 +951,7 @@ Atype: $$->type = $3; $$->chan = Crecv; } -| LCHAN LCOMM Atype // not full Atype +| LCHAN LCOMM Atype /* not full Atype */ { $$ = typ(TCHAN); $$->type = $3;