Revert "Merge branch 'fix-add-result-compatibility-dep'"

This reverts commit ac980c3e85112c79a540e17691746b8345a1015b, reversing
changes made to d133bac87429e174c3cdefcdad6be70db19d005d.
M pds.conf +1 -1
@@ 7,7 7,7 @@ extra_compiler_opts = "-g -strict-sequen
 [src.snabela]
 install = true
 extra_ocamldep_opts = "-package sedlex"
-deps = [ "result", "process", "containers", "sedlex", "ppx_deriving", "ppx_deriving.show", "ppx_deriving.eq" ]
+deps = [ "process", "containers", "sedlex", "ppx_deriving", "ppx_deriving.show", "ppx_deriving.eq" ]
 
 [src.snabela_cli]
 install = true

          
M src/snabela/snabela.ml +0 -2
@@ 1,5 1,3 @@ 
-open Result
-
 module Kv = struct
   module Map = CCMap.Make(String)
 

          
M src/snabela/snabela.mli +0 -2
@@ 6,8 6,6 @@ 
 
     Convenience function are provided for constructing a value of type [t] as
     well as pretty printing. *)
-open Result
-
 module Kv : sig
   module Map : CCMap.S with type key = string
 

          
M src/snabela/snabela_lexer.ml +0 -2
@@ 1,5 1,3 @@ 
-open Result
-
 module Token = struct
   type token =
     | Escaped_at

          
M src/snabela_cli/snabela_cli.ml +0 -2
@@ 1,5 1,3 @@ 
-open Result
-
 module SMap = CCMap.Make(String)
 
 module Cmdline = struct