diff options
Diffstat (limited to 'src/parse.y')
-rw-r--r-- | src/parse.y | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/parse.y b/src/parse.y index 7af0af55e..aca3bfb1c 100644 --- a/src/parse.y +++ b/src/parse.y @@ -24,8 +24,9 @@ %token_type {Token} %default_type {Token} -// The generated parser function takes a 4th argument as follows: -%extra_argument {Parse *pParse} +// An extra argument to the constructor for the parser, which is available +// to all actions. +%extra_context {Parse *pParse} // This code runs whenever there is a syntax error // |