From a9c8847ab2d4f9b9e07b326a2311bd306353b017 Mon Sep 17 00:00:00 2001 From: swrup Date: Mon, 13 Oct 2025 07:02:03 +0200 Subject: [PATCH] --- include/parse_config.ml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/parse_config.ml b/include/parse_config.ml index b82dbe44..f9140392 100644 --- a/include/parse_config.ml +++ b/include/parse_config.ml @@ -74,8 +74,6 @@ let identifier = in take_while1 ident_char >>| String.lowercase_ascii -(* --- Values --- *) - let value = let unquoted_value = take_while1 (fun c -> not (is_whitespace c || is_eol c)) @@ -115,8 +113,6 @@ let parse_config s = | Ok v -> v | Error msg -> failwith msg -(* --- pp --- *) - let pp_item ppf { key; value } = let open Fmt in pf ppf "%s = %s" key value