aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/lib.mli
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-09-05 16:47:14 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-09-05 16:47:14 +0000
commit4c65f9a13758e5378026de77cfe5600e2dae8a73 (patch)
treeb91e79c1433a70e4596a9ca0946b522b62e04357 /library/lib.mli
parentac2ca408aef1759e4682d989a40ab332068edcdb (diff)
Lib: remove strange code about backtracking to the current state
We now forbid a "BackTo n" or "Backtrack n _ _" when n is the current label or a future one. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14453 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library/lib.mli')
-rw-r--r--library/lib.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/lib.mli b/library/lib.mli
index 8defad867..419f91317 100644
--- a/library/lib.mli
+++ b/library/lib.mli
@@ -68,9 +68,9 @@ val mark_end_of_command : unit -> unit
(** Returns the current label number *)
val current_command_label : unit -> int
-(** [reset_label n ] resets [lib_stk] to the label n registered by
- [mark_end_of_command()]. That is it forgets the label and anything
- registered after it. *)
+(** [reset_label n] resets [lib_stk] to the label n registered by
+ [mark_end_of_command()]. It forgets the label and anything
+ registered after it. The label should be strictly in the past. *)
val reset_label : int -> unit
(** {6 ... } *)