Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/grammar_pp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ and coq_maybe_decide_equality m xd homs ntmvr loc =
| [ Hom_string s ] -> s
| _ -> Auxl.error (Some loc) "malformed coq-equality homomorphism\n" )
^ "\nDefined.\n"
^ "Hint Resolve eq_" ^ type_name ^ " : ott_coq_equality.\n"
^ "#[export] Hint Resolve eq_" ^ type_name ^ " : ott_coq_equality.\n"

and pp_metavardefn m xd mvd =
let pp_com = pp_com_strings m xd mvd.mvd_rep [pp_metavar_with_sie m xd [] (mvd.mvd_name,[])] in
Expand Down
2 changes: 1 addition & 1 deletion src/ln_transform.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ Tactic Notation \"apply_fresh\" \"*\" constr(T) \"as\" ident(x) :=
let h = hints_rel @ hints_lc in
if List.length h = 0
then ""
else "Hint Constructors "^(String.concat " " h)^" : core.\n" in
else "#[export] Hint Constructors "^(String.concat " " h)^" : core.\n" in

(* ** all together *)
"\n(** infrastructure *)\n"
Expand Down
Loading