From: Akim Demaille Date: Wed, 23 Sep 2009 13:06:24 +0000 (+0200) Subject: Formatting changes. X-Git-Tag: v2.7.90~765 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/298e8ad91ae90e280e614feb2585e1dce8b0427f Formatting changes. * doc/bison.texinfo: here. --- diff --git a/doc/bison.texinfo b/doc/bison.texinfo index 8f40afbe..651645d9 100644 --- a/doc/bison.texinfo +++ b/doc/bison.texinfo @@ -9249,9 +9249,9 @@ exp: | exp "-" exp @{ $$ = $1 - $3; @} | exp "*" exp @{ $$ = $1 * $3; @} | exp "/" exp @{ $$ = $1 / $3; @} -| "(" exp ")" @{ std::swap($$, $2); @} +| "(" exp ")" @{ std::swap ($$, $2); @} | "identifier" @{ $$ = driver.variables[$1]; @} -| "number" @{ std::swap($$, $1); @}; +| "number" @{ std::swap ($$, $1); @}; %% @end example