From: Paul Eggert Date: Sat, 27 Apr 2002 01:20:51 +0000 (+0000) Subject: (YYCOPY): Fix [] quoting problem in the non-GCC case. X-Git-Tag: BISON-1_49a~6 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/0c76a0c91119bf2e02c5104f2c211d2cc7215dac (YYCOPY): Fix [] quoting problem in the non-GCC case. --- diff --git a/data/bison.simple b/data/bison.simple index fd16dd2a..803d1a48 100644 --- a/data/bison.simple +++ b/data/bison.simple @@ -236,7 +236,7 @@ union yyalloc { \ register YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ - (To)[yyi] = (From)[yyi]; \ + (To)[[yyi]] = (From)[[yyi]]; \ } \ while (0) # endif