]> git.saurik.com Git - bison.git/blobdiff - doc/bison.texinfo
Let position and location be PODs.
[bison.git] / doc / bison.texinfo
index 01dccb418bcea8ca898ef758154f4c9234e39512..47b6720ec93e7a6e438934e0dec09573756823a1 100644 (file)
@@ -3800,7 +3800,7 @@ For instance, if your locations use a file name, you may use
 %parse-param @{ char const *file_name @};
 %initial-action
 @{
-  @@$.begin.filename = @@$.end.filename = file_name;
+  @@$.initialize (file_name);
 @};
 @end example