aboutsummaryrefslogtreecommitdiff
path: root/tactics/tacticals.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/tacticals.ml')
-rw-r--r--tactics/tacticals.ml2
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 =