From: Ferruccio Guidi Date: Fri, 5 Jun 2009 22:23:42 +0000 (+0000) Subject: bugfix in Include syntax: it was changed and committed by mistake :( X-Git-Tag: make_still_working~3912 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=a3ee89dab26307ce1cedc8041ede995a97d51446;p=helm.git bugfix in Include syntax: it was changed and committed by mistake :( --- diff --git a/helm/software/components/grafite_parser/dependenciesParser.ml b/helm/software/components/grafite_parser/dependenciesParser.ml index 923739924..53fb7ab6d 100644 --- a/helm/software/components/grafite_parser/dependenciesParser.ml +++ b/helm/software/components/grafite_parser/dependenciesParser.ml @@ -56,7 +56,7 @@ let parse_dependencies lexbuf = true, (UriDep (UriManager.uri_of_string u) :: acc) | [< '("IDENT", "include"); '("QSTRING", fname) >] -> true, (IncludeDep fname :: acc) - | [< '("IDENT", "include"); '("IDENT", "lexicon"); '("QSTRING", fname) >] -> + | [< '("IDENT", "include"); '("IDENT", "source"); '("QSTRING", fname) >] -> true, (IncludeDep fname :: acc) | [< '("IDENT", "include'"); '("QSTRING", fname) >] -> true, (IncludeDep fname :: acc)