diff options
| author | Enrico Tassi | 2018-03-26 14:01:52 +0200 |
|---|---|---|
| committer | Enrico Tassi | 2018-03-26 14:01:52 +0200 |
| commit | c1dcb97cf95c10d19f67689108da8726232da4fb (patch) | |
| tree | 54b60698a12d133cccd822f323cec582ac0e9e6a /lib/cErrors.ml | |
| parent | e128900aee63c972d7977fd47e3fd21649b63409 (diff) | |
| parent | 75f569f35fbbbbab5a4629eaf3385335a3024e0b (diff) | |
Merge PR #6970: [vernac] Move `Quit` and `Drop` to the toplevel layer.
Diffstat (limited to 'lib/cErrors.ml')
| -rw-r--r-- | lib/cErrors.ml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/cErrors.ml b/lib/cErrors.ml index 9750221143..811fcf4063 100644 --- a/lib/cErrors.ml +++ b/lib/cErrors.ml @@ -47,8 +47,6 @@ exception AlreadyDeclared of Pp.t (* for already declared Schemes *) let alreadydeclared pps = raise (AlreadyDeclared(pps)) exception Timeout -exception Drop -exception Quit let handle_stack = ref [] @@ -126,7 +124,7 @@ end let noncritical = function | Sys.Break | Out_of_memory | Stack_overflow | Assert_failure _ | Match_failure _ | Anomaly _ - | Timeout | Drop | Quit -> false + | Timeout -> false | Invalid_argument "equal: functional value" -> false | _ -> true [@@@ocaml.warning "+52"] |
