aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/context.ml
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/context.ml')
-rw-r--r--kernel/context.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/context.ml b/kernel/context.ml
index 5cb964b9c..6b5a6cdb9 100644
--- a/kernel/context.ml
+++ b/kernel/context.ml
@@ -87,7 +87,7 @@ let rel_context_tags ctx =
goal assumptions. *)
type named_context = named_declaration list
-type compacted_named_context = named_list_declaration list
+type named_list_context = named_list_declaration list
let empty_named_context = []
@@ -112,6 +112,7 @@ let instance_from_named_context sign =
List.map_filter filter sign
let fold_named_context f l ~init = List.fold_right f l init
+let fold_named_list_context f l ~init = List.fold_right f l init
let fold_named_context_reverse f ~init l = List.fold_left f init l
(*s Signatures of ordered section variables *)