diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2002-04-17 05:36:36 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2002-04-17 05:36:36 +0000 |
commit | f7d144481f8a864e613d7f401c4e03e3ad05e81c (patch) | |
tree | 71c8b60f2ac2231d3793e105ab4bf0359af332c1 /otherlibs/labltk/browser/setpath.ml | |
parent | 21cb8b301b45f8feadbb050e0b4b107c044f41fd (diff) |
Ocamlbrowser, le retour. Merci Xavier
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4686 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/browser/setpath.ml')
-rw-r--r-- | otherlibs/labltk/browser/setpath.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/labltk/browser/setpath.ml b/otherlibs/labltk/browser/setpath.ml index 82d9b2a60..3e7470dfc 100644 --- a/otherlibs/labltk/browser/setpath.ml +++ b/otherlibs/labltk/browser/setpath.ml @@ -57,7 +57,7 @@ let add_to_path ~dirs ?(base="") box = begin function "." -> base | ".." -> Filename.dirname base - | x -> base ^ "/" ^ x + | x -> Filename.concat base x end in set_load_path |