281c774
--- sedlex-2.2/src/generator/gen_unicode.ml.inc.orig	2020-02-08 14:55:37.000000000 -0700
281c774
+++ sedlex-2.2/src/generator/gen_unicode.ml.inc	2020-06-17 21:22:50.269177776 -0600
281c774
@@ -77,14 +77,14 @@ let split list n =
281c774
 
281c774
 let print_elements ch hashtbl =
281c774
   let cats =
281c774
-    List.sort_uniq Pervasives.compare
281c774
+    List.sort_uniq Stdlib.compare
281c774
       (Hashtbl.fold (fun cat _ l -> cat::l) hashtbl [])
281c774
   in
281c774
   let len = List.length cats in
281c774
   List.iter (fun c ->
281c774
     let entries =
281c774
       List.map (fun (b,e) -> Printf.sprintf "0x%x, 0x%x" b e)
281c774
-        (List.sort_uniq Pervasives.compare
281c774
+        (List.sort_uniq Stdlib.compare
281c774
           (Hashtbl.find_all hashtbl c))
281c774
     in
281c774
     let entries =