From 0c76a0c91119bf2e02c5104f2c211d2cc7215dac Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 27 Apr 2002 01:20:51 +0000 Subject: [PATCH] (YYCOPY): Fix [] quoting problem in the non-GCC case. --- data/bison.simple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0