]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/pxp/pxp/pxp_utf8.ml
Initial revision
[helm.git] / helm / DEVEL / pxp / pxp / pxp_utf8.ml
1 (* $Id$
2  * ----------------------------------------------------------------------
3  *
4  *)
5
6 open Pxp_types;;
7 open Pxp_lexer_types;;
8
9 Pxp_lexers.init_utf8 
10   { lex_encoding         = `Enc_utf8;
11     scan_document        = Pxp_lex_document_utf8.scan_document;
12     scan_content         = Pxp_lex_content_utf8.scan_content;
13     scan_within_tag      = Pxp_lex_within_tag_utf8.scan_within_tag;
14     scan_document_type   = Pxp_lex_document_type_utf8.
15                              scan_document_type;
16     scan_declaration     = Pxp_lex_declaration_utf8.scan_declaration;
17     scan_content_comment  = Pxp_lex_misc_utf8.scan_content_comment;
18     scan_decl_comment     = Pxp_lex_misc_utf8.scan_decl_comment;
19     scan_document_comment = Pxp_lex_misc_utf8.scan_document_comment;
20     scan_ignored_section = Pxp_lex_name_string_utf8.scan_ignored_section;
21     scan_xml_pi          = Pxp_lex_misc_utf8.scan_xml_pi;
22     scan_dtd_string      = Pxp_lex_dtd_string_utf8.scan_dtd_string;
23     scan_content_string  = Pxp_lex_content_string_utf8.
24                              scan_content_string;
25     scan_name_string     = Pxp_lex_name_string_utf8.scan_name_string;
26     scan_only_xml_decl   = Pxp_lex_misc_utf8.scan_only_xml_decl;
27     scan_for_crlf        = Pxp_lex_misc_utf8.scan_for_crlf;
28   }
29 ;;
30
31 (* ======================================================================
32  * History:
33  * 
34  * $Log$
35  * Revision 1.1  2000/11/17 09:57:29  lpadovan
36  * Initial revision
37  *
38  * Revision 1.3  2000/06/04 20:31:44  gerd
39  *      Updated.
40  *
41  * Revision 1.2  2000/05/29 21:14:57  gerd
42  *      Changed the type 'encoding' into a polymorphic variant.
43  *
44  * Revision 1.1  2000/05/23 00:08:48  gerd
45  *      Initial revision.
46  *
47  * 
48  *)