X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fbinaries%2Ftranscript%2FgrafiteParser.mly;h=82295c69b553bc68f268a387f2127f49defb46ad;hb=18beb4339a683c5b6243673b91da878a208b36e3;hp=1e6855f554154fe068bdc99320286a5a8f26f6d6;hpb=4dc47c9675ffd5fa50296ffaa9b5997501518c98;p=helm.git diff --git a/helm/software/components/binaries/transcript/grafiteParser.mly b/helm/software/components/binaries/transcript/grafiteParser.mly index 1e6855f55..82295c69b 100644 --- a/helm/software/components/binaries/transcript/grafiteParser.mly +++ b/helm/software/components/binaries/transcript/grafiteParser.mly @@ -127,15 +127,14 @@ { out "OK" $1; [T.Verbatim $1] } | TH SPC id line drops { out "TH" $3; - let a, b = mk_flavour $1 in [T.Inline (false, a, $3, "", b)] + let a, b = mk_flavour $1 in [T.Inline (false, a, $3, "", b, [])] } - | UNX line drops - { out "UNX" $1; [T.Verbatim ($1 ^ $2 ^ $3)] } - | PS steps - { [] } + | UNX line drops { out "UNX" $1; [T.Verbatim ($1 ^ $2 ^ $3)] } + | PS steps { out "PS" $2; [] } + | QED FS { [] } ; items: | EOF { [] } | item items { $1 @ $2 } /* | error { out "ERROR" ""; failwith ("item id " ^ "") } */ - ; + ;