]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/grafite_parser/cicNotation2.ml
moved initial (i.e. empty) lexiconEngine status to lexiconEngine from
[helm.git] / helm / software / components / grafite_parser / cicNotation2.ml
index 015d426e72c82acde6b4509b1a57cb41d097b58b..b3c8a59cc81231a44c49ccf102e809fe4bf7f1a4 100644 (file)
@@ -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)