aboutsummaryrefslogtreecommitdiff
path: root/intf
diff options
context:
space:
mode:
authorArnaud Spiwack2014-12-23 13:27:10 +0100
committerArnaud Spiwack2014-12-23 13:40:05 +0100
commit239fe70ae8a39f5c5619cf88f1ae264c31bda65e (patch)
tree739ad87d4c4fb4cf1fe1c4dd7552b6fcb29bd9e9 /intf
parent8e1a7e3e6a4c84db18f6fd5334776489015b368d (diff)
Fix compilation error in some configurations.
This was due to the unqualified uses of "Lazy" being disambiguated in different manners. I just changed the constructor name to "Select". Fixes #3877.
Diffstat (limited to 'intf')
-rw-r--r--intf/tacexpr.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/intf/tacexpr.mli b/intf/tacexpr.mli
index 7c898b75eb..c4e91d32ee 100644
--- a/intf/tacexpr.mli
+++ b/intf/tacexpr.mli
@@ -22,7 +22,7 @@ open Locus
type direction_flag = bool (* true = Left-to-right false = right-to-right *)
type lazy_flag =
| General (* returns all possible successes *)
- | Lazy (* returns all successes of the first matching branch *)
+ | Select (* returns all successes of the first matching branch *)
| Once (* returns the first success in a maching branch
(not necessarily the first) *)
type evars_flag = bool (* true = pose evars false = fail on evars *)