aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/util.mli
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-06-06 09:29:20 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-06-06 09:29:20 +0000
commit64c9874e12872a08bfcce470b5e03813c5cff586 (patch)
tree42a6e0060354c7f9327fd8349e0c1c8394ae7ccf /lib/util.mli
parent9953deaa45c642301a6cd7202b486c45923dece8 (diff)
Correction terminologie et ajout plage unicode 1D400-1D7FF (mathematical
alphanumerical symbols) suite à remarques de Arnaud. Correction bugs d'affichage de l'option -translate. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11059 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/util.mli')
-rw-r--r--lib/util.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.mli b/lib/util.mli
index 0cbd2fa0e..e715feca3 100644
--- a/lib/util.mli
+++ b/lib/util.mli
@@ -78,11 +78,11 @@ val parse_loadpath : string -> string list
module Stringset : Set.S with type elt = string
module Stringmap : Map.S with type key = string
-type utf8_status = Utf8Letter | Utf8IdentPart | Utf8Symbol
+type utf8_status = UnicodeLetter | UnicodeIdentPart | UnicodeSymbol
exception UnsupportedUtf8
-val classify_utf8 : int -> utf8_status
+val classify_unicode : int -> utf8_status
val check_ident : string -> unit
val lowercase_first_char_utf8 : string -> string