diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2001-11-22 07:36:15 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2001-11-22 07:36:15 +0000 |
commit | a8eb19032d5bf75a5ac5fb18a3d0d4b070e0702c (patch) | |
tree | f6aa7769b9b3b0caf8afe4d14928dffbc8dc9bca /otherlibs/labltk/browser/jg_tk.ml | |
parent | 86827528b31e9af179ee340fa8f4469dcc240ef9 (diff) |
accepte commentaires avant ou apres
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4031 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/browser/jg_tk.ml')
-rw-r--r-- | otherlibs/labltk/browser/jg_tk.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/labltk/browser/jg_tk.ml b/otherlibs/labltk/browser/jg_tk.ml index 32ed9699c..98ac89c7e 100644 --- a/otherlibs/labltk/browser/jg_tk.ml +++ b/otherlibs/labltk/browser/jg_tk.ml @@ -15,8 +15,8 @@ open Tk -let tpos x : textIndex = `Linechar (1,0), [`Char x] -and tposend x : textIndex = `End, [`Char (-x)] +let tpos ?(modi=[]) x : textIndex = `Linechar (1,0), `Char x :: modi +and tposend ?(modi=[]) x : textIndex = `End, `Char (-x) :: modi let tstart : textIndex = `Linechar (1,0), [] and tend : textIndex = `End, [] |