@@ -304,6 +304,7 @@ let in_source : Names.Id.t -> string option * EC.compilation_unit * EC.flags ->
304
304
cache_function = cache;
305
305
open_function = simple_open import;
306
306
discharge_function = (fun o -> Some o);
307
+ classify_function = (fun _ -> Keep );
307
308
}
308
309
;;
309
310
@@ -495,6 +496,7 @@ let get ?(fail_if_not_exists=false) p =
495
496
let open Libobject in
496
497
declare_object { (default_object " ELPI-LP-COMMAND" ) with
497
498
load_function = (fun _ x -> lp_command_ast := Some x);
499
+ classify_function = (fun _ -> Keep );
498
500
}
499
501
let load_command s =
500
502
let elpi = ensure_initialized () in
@@ -514,6 +516,7 @@ let get ?(fail_if_not_exists=false) p =
514
516
let open Libobject in
515
517
declare_object { (default_object " ELPI-LP-TACTIC" ) with
516
518
load_function = (fun _ x -> lp_tactic_ast := Some x);
519
+ classify_function = (fun _ -> Keep );
517
520
}
518
521
let load_tactic s =
519
522
let elpi = ensure_initialized () in
@@ -548,6 +551,7 @@ let get ?(fail_if_not_exists=false) p =
548
551
let open Libobject in
549
552
declare_object { (default_object " ELPI-LP-CHECKER" ) with
550
553
load_function = (fun _ x -> lp_checker_ast := Some x);
554
+ classify_function = (fun _ -> Keep );
551
555
}
552
556
553
557
let load_checker s =
@@ -566,6 +570,7 @@ let get ?(fail_if_not_exists=false) p =
566
570
let open Libobject in
567
571
declare_object { (default_object " ELPI-LP-PRINTER" ) with
568
572
load_function = (fun _ x -> lp_printer_ast := Some x);
573
+ classify_function = (fun _ -> Keep );
569
574
}
570
575
let load_printer s =
571
576
let elpi = ensure_initialized () in
0 commit comments