aboutsummaryrefslogtreecommitdiff
path: root/library/lib.mli
diff options
context:
space:
mode:
authorfilliatr2000-10-23 13:53:37 +0000
committerfilliatr2000-10-23 13:53:37 +0000
commit4f6b4c911f355b35c2b9a940cf78eb0cd21e4c12 (patch)
tree489e36243e4ebc0b183881ba319a567274d03c60 /library/lib.mli
parent2a65f02209de3c5de3b493e3d03a118ba719d82b (diff)
module_segment et module_filename
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@739 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/lib.mli')
-rw-r--r--library/lib.mli7
1 files changed, 6 insertions, 1 deletions
diff --git a/library/lib.mli b/library/lib.mli
index 1d601f7b60..cf8b173b0f 100644
--- a/library/lib.mli
+++ b/library/lib.mli
@@ -7,7 +7,7 @@ open Libobject
open Summary
(*i*)
-(* This module provides a general mechanism to keep a trace of all operations
+(*s This module provides a general mechanism to keep a trace of all operations
and to backtrack (undo) those operations. It provides also the section
mechanism (at a low level; discharge is not known at this step). *)
@@ -29,6 +29,11 @@ and library_segment = library_entry list
val add_leaf : identifier -> path_kind -> obj -> section_path
val add_anonymous_leaf : obj -> unit
+
+(*s The function [contents_after] returns the current library segment,
+ starting from a given section path. If not given, the entire segment
+ is returned. *)
+
val contents_after : section_path option -> library_segment