diff options
| author | Maxime Dénès | 2017-11-27 16:48:39 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-11-27 16:48:39 +0100 |
| commit | 4bf305af7e4688b96ec6f407b2a6f4e7e9d7a4a5 (patch) | |
| tree | 5d2534ccc35ef94aa34ccd5d96064adb92955a04 /vernac | |
| parent | 201b6592f7a416c5f5b42f001fc7d629951aa90e (diff) | |
| parent | aa560c640eb3f1148c87c4343900138845729105 (diff) | |
Merge PR #6241: [lib] Generalize Control.timeout type.
Diffstat (limited to 'vernac')
| -rw-r--r-- | vernac/vernacentries.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/vernacentries.ml b/vernac/vernacentries.ml index 6a28d701ae..bdd351901d 100644 --- a/vernac/vernacentries.ml +++ b/vernac/vernacentries.ml @@ -2144,7 +2144,7 @@ let vernac_timeout f = match !current_timeout, !default_timeout with | Some n, _ | None, Some n -> let f () = f (); current_timeout := None in - Control.timeout n f Timeout + Control.timeout n f () Timeout | None, None -> f () let restore_timeout () = current_timeout := None |
