From 14e6dc5800a28d49dcdb714b06c02fced7b9fdaf Mon Sep 17 00:00:00 2001 From: Pierre Boutillier Date: Tue, 5 Aug 2014 18:09:30 +0200 Subject: Coqide prints succesive hyps of the same type on 1 line This revert somehow f5d7b2b1eda550f5bf0965286d449112acbbadde about "Hypotheses don't respect Barendregt convention". --- kernel/context.mli | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'kernel/context.mli') diff --git a/kernel/context.mli b/kernel/context.mli index 048edef95..1d732d273 100644 --- a/kernel/context.mli +++ b/kernel/context.mli @@ -19,10 +19,13 @@ open Names purpose) *) type named_declaration = Id.t * Constr.t option * Constr.t +type named_list_declaration = Id.t list * Constr.t option * Constr.t type rel_declaration = Name.t * Constr.t option * Constr.t val map_named_declaration : (Constr.t -> Constr.t) -> named_declaration -> named_declaration +val map_named_list_declaration : + (Constr.t -> Constr.t) -> named_list_declaration -> named_list_declaration val map_rel_declaration : (Constr.t -> Constr.t) -> rel_declaration -> rel_declaration @@ -51,6 +54,7 @@ val eq_rel_declaration : type named_context = named_declaration list type section_context = named_context +type compacted_named_context = named_list_declaration list type rel_context = rel_declaration list (** In [rel_context], more recent declaration is on top *) -- cgit v1.2.3