summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/browser/jg_bind.ml
diff options
context:
space:
mode:
authorJacques Garrigue <garrigue at math.nagoya-u.ac.jp>1999-12-16 08:37:38 +0000
committerJacques Garrigue <garrigue at math.nagoya-u.ac.jp>1999-12-16 08:37:38 +0000
commit607772a16356084f724b7b4d8f29907def715ff1 (patch)
tree207c813ba86751631a7970b3c424db9b481e537c /otherlibs/labltk/browser/jg_bind.ml
parentfd6165164bf3ca6631e3b2b12a0f25ba3f5dd97a (diff)
drastic clean up of the code. slice .cmo size by 2!
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2692 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/browser/jg_bind.ml')
-rw-r--r--otherlibs/labltk/browser/jg_bind.ml9
1 files changed, 4 insertions, 5 deletions
diff --git a/otherlibs/labltk/browser/jg_bind.ml b/otherlibs/labltk/browser/jg_bind.ml
index df0bf80d9..59dc89019 100644
--- a/otherlibs/labltk/browser/jg_bind.ml
+++ b/otherlibs/labltk/browser/jg_bind.ml
@@ -3,13 +3,12 @@
open Tk
let enter_focus w =
- bind w events:[[], `Enter] action:(`Set ([], fun _ -> Focus.set w))
+ bind w events:[`Enter] action:(fun _ -> Focus.set w)
let escape_destroy ?destroy:tl w =
let tl = match tl with Some w -> w | None -> w in
- bind w events:[[], `KeyPressDetail "Escape"]
- action:(`Set ([], fun _ -> destroy tl))
+ bind w events:[`KeyPressDetail "Escape"] action:(fun _ -> destroy tl)
let return_invoke w :button =
- bind w events:[[], `KeyPressDetail "Return"]
- action:(`Set ([], fun _ -> Button.invoke button))
+ bind w events:[`KeyPressDetail "Return"]
+ action:(fun _ -> Button.invoke button)