diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2000-03-28 08:47:47 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2000-03-28 08:47:47 +0000 |
commit | db2e8dec76e17bd0987dd0a12ad7509b6e63d97c (patch) | |
tree | 65f6ec5acc0c6d9020f1fb5b0dcb32bd4fe8bca3 /otherlibs/labltk/builtin/builtini_bind.ml | |
parent | e3f1ab289da91f2d382afc824ade6c6e3b5eb764 (diff) |
adapte aux labels legers
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3005 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/builtin/builtini_bind.ml')
-rw-r--r-- | otherlibs/labltk/builtin/builtini_bind.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/labltk/builtin/builtini_bind.ml b/otherlibs/labltk/builtin/builtini_bind.ml index 61e0baa61..d6d708d4d 100644 --- a/otherlibs/labltk/builtin/builtini_bind.ml +++ b/otherlibs/labltk/builtin/builtini_bind.ml @@ -44,11 +44,11 @@ let cCAMLtoTKevent (ev : event) = | `Unmap -> "Unmap" | `Visibility -> "Visibility" | `Modified(ml, ev) -> - String.concat sep:"" (List.map fun:cCAMLtoTKmodifier ml) + String.concat sep:"" (List.map f:cCAMLtoTKmodifier ml) ^ convert ev in "<" ^ convert ev ^ ">" let cCAMLtoTKeventSequence (l : event list) = - TkToken(String.concat sep:"" (List.map fun:cCAMLtoTKevent l)) + TkToken(String.concat sep:"" (List.map f:cCAMLtoTKevent l)) |