diff options
| author | Pierre-Marie Pédrot | 2014-08-28 15:14:29 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2014-08-28 22:45:24 +0200 |
| commit | 58543b45425b85233c068f9da859996270d1fdcf (patch) | |
| tree | 6981dca5a3bf4468d2533bb239dcf44aca190ebf /tactics | |
| parent | 32c83676c96ae4a218de0bec75d2f3353381dfb3 (diff) | |
Simplification of the tclCHECKINTERRUPT tactic.
Diffstat (limited to 'tactics')
| -rw-r--r-- | tactics/tacticals.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tacticals.ml b/tactics/tacticals.ml index bbd114c281..50f51de21c 100644 --- a/tactics/tacticals.ml +++ b/tactics/tacticals.ml @@ -411,7 +411,7 @@ module New = struct let rec tclREPEAT0 t = tclINDEPENDENT begin tclIFCATCH t - (fun () -> tclCHECKINTERRUPT () <*> tclREPEAT0 t) + (fun () -> tclCHECKINTERRUPT <*> tclREPEAT0 t) (fun e -> catch_failerror e <*> tclUNIT ()) end let tclREPEAT t = |
