X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fgrafite_parser%2FcicNotation2.ml;h=b3c8a59cc81231a44c49ccf102e809fe4bf7f1a4;hb=2b837ca9e298eb44eee95d9ca0e331c577785dcb;hp=015d426e72c82acde6b4509b1a57cb41d097b58b;hpb=55b82bd235d82ff7f0a40d980effe1efde1f5073;p=helm.git diff --git a/helm/software/components/grafite_parser/cicNotation2.ml b/helm/software/components/grafite_parser/cicNotation2.ml index 015d426e7..b3c8a59cc 100644 --- a/helm/software/components/grafite_parser/cicNotation2.ml +++ b/helm/software/components/grafite_parser/cicNotation2.ml @@ -28,7 +28,7 @@ let load_notation ~include_paths fname = let ic = open_in fname in let lexbuf = Ulexing.from_utf8_channel ic in - let status = ref LexiconSync.init in + let status = ref LexiconEngine.initial_status in try while true do status := fst (GrafiteParser.parse_statement ~include_paths lexbuf !status) @@ -38,7 +38,7 @@ let load_notation ~include_paths fname = let parse_environment ~include_paths str = let lexbuf = Ulexing.from_utf8_string str in - let status = ref LexiconSync.init in + let status = ref LexiconEngine.initial_status in try while true do status := fst (GrafiteParser.parse_statement ~include_paths lexbuf !status)