summaryrefslogtreecommitdiffstats
path: root/stdlib/sys.ml
diff options
context:
space:
mode:
authorPierre Weis <Pierre.Weis@inria.fr>2005-09-20 17:18:03 +0000
committerPierre Weis <Pierre.Weis@inria.fr>2005-09-20 17:18:03 +0000
commit339b08f82f26d4bf204162aee275057c9a264e5a (patch)
tree13c53b83210a9b2132da1313f784a34a2216ca61 /stdlib/sys.ml
parent93474822f44c74c3819c6d5fb689581f617d44b8 (diff)
Closing a long standing bug in the implementation of printf-like
functions: partially applied printf functions were printing material as soon as the first argument was applied (and even before: printing started as soon as the format string was provided). This is the first step towards the implementation of $ formats (i.e. formats that can access directly to any of their arguments, using a $n notation to denote the nth argument (``a la Yacc'')). This is supposed to be mandatory to internationalisation of messages. git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7060 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/sys.ml')
-rw-r--r--stdlib/sys.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/sys.ml b/stdlib/sys.ml
index 360a19c57..aef1060ba 100644
--- a/stdlib/sys.ml
+++ b/stdlib/sys.ml
@@ -78,4 +78,4 @@ let catch_break on =
(* OCaml version string, must be in the format described in sys.mli. *)
-let ocaml_version = "3.09+dev30 (2005-08-25)";;
+let ocaml_version = "3.09+dev31 (2005-09-20)";;