aboutsummaryrefslogtreecommitdiff
path: root/lib/configuration/read_conf.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-01-10 22:06:06 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-01-22 12:22:26 +0100
commit5e15341857e57671a3c617579e3d5dcc89040936 (patch)
tree8d90ea72c77ccef7f6b6d5eba199204ce01b27d6 /lib/configuration/read_conf.ml
parent413b86050e364db51eb4f1bb095f70b141c02919 (diff)
Print the float numbers using the user locale
Diffstat (limited to 'lib/configuration/read_conf.ml')
-rw-r--r--lib/configuration/read_conf.ml9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/configuration/read_conf.ml b/lib/configuration/read_conf.ml
index 952c43c..df1a728 100644
--- a/lib/configuration/read_conf.ml
+++ b/lib/configuration/read_conf.ml
@@ -184,17 +184,18 @@ module Make (S : Decoders.Decode.S) = struct
S.field_opt_or ~default:[] "uniq"
@@ S.list (self#parse_expression ExpressionParser.path)
in
- S.succeed @@ fun version source externals ->
- Syntax.{ version; source; externals; columns; filters; sort; uniq }
+ S.succeed @@ fun version source externals locale ->
+ Syntax.
+ { version; source; externals; columns; filters; sort; uniq; locale }
method conf =
let* source = S.field "source" self#source
and* externals =
S.field_opt_or ~default:[] "externals"
(S.key_value_pairs_seq self#external_)
- in
+ and* locale = S.field_opt "locale" S.string in
let* sheet =
- S.field "sheet" self#sheet >|= fun v -> v 1 source externals
+ S.field "sheet" self#sheet >|= fun v -> v 1 source externals locale
in
S.succeed sheet