X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftex_cic_textual_parser%2FtexCicTextualLexer.mll;h=5ab17fa80ce5e5879bf4a33320b3acc5b36802cc;hb=0de1b960f42ac368414b7405a79e7933445ee8af;hp=06bbab076ec8c3b501d30dfa3e49d196a29b6c82;hpb=71284ef6c56c909e7205543f3fe8b916517f79b0;p=helm.git diff --git a/helm/ocaml/tex_cic_textual_parser/texCicTextualLexer.mll b/helm/ocaml/tex_cic_textual_parser/texCicTextualLexer.mll index 06bbab076..5ab17fa80 100644 --- a/helm/ocaml/tex_cic_textual_parser/texCicTextualLexer.mll +++ b/helm/ocaml/tex_cic_textual_parser/texCicTextualLexer.mll @@ -81,6 +81,7 @@ rule token = | "\\Set" { SET } | "\\Prop" { PROP } | "\\Type" { TYPE } + | "\\CProp" { CPROP } | ident { ID (unquote (L.lexeme lexbuf)) } | conuri { CONURI (U.uri_of_string ("cic:" ^ (unquote (L.lexeme lexbuf)))) } @@ -114,6 +115,7 @@ rule token = | "\\pi" { PROD } | "\\forall" { PROD } | "\\eqt" { EQT } + | "\\neqt" { NEQT } | ':' { COLON } | '.' { DOT } | "\\to" { ARROW }