summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1996-10-31 16:03:27 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1996-10-31 16:03:27 +0000
commitbfa250606e65226da3096d0fe1729a2b18c23eca (patch)
tree1674108f8ca277f986ccbaadb65e6f206fb11f41 /tools
parent9548bd7e5de2c9bb64859317d77c71930ad66c94 (diff)
downloadocaml-bfa250606e65226da3096d0fe1729a2b18c23eca.tar.gz
Misc.lowercase -> String.uncapitalize
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1130 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'tools')
-rw-r--r--tools/ocamldep.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ocamldep.mll b/tools/ocamldep.mll
index 08455940b3..e422cac07f 100644
--- a/tools/ocamldep.mll
+++ b/tools/ocamldep.mll
@@ -97,7 +97,7 @@ let load_path = ref [""]
let opt_flag = ref true
let find_dependency modname (byt_deps, opt_deps) =
- let name = Misc.lowercase modname in
+ let name = String.uncapitalize modname in
try
let filename = Misc.find_in_path !load_path (name ^ ".mli") in
let basename = Filename.chop_suffix filename ".mli" in