diff options
| author | Arnaud Spiwack | 2014-12-23 13:27:10 +0100 |
|---|---|---|
| committer | Arnaud Spiwack | 2014-12-23 13:40:05 +0100 |
| commit | 239fe70ae8a39f5c5619cf88f1ae264c31bda65e (patch) | |
| tree | 739ad87d4c4fb4cf1fe1c4dd7552b6fcb29bd9e9 /parsing | |
| parent | 8e1a7e3e6a4c84db18f6fd5334776489015b368d (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 'parsing')
| -rw-r--r-- | parsing/g_ltac.ml4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/g_ltac.ml4 b/parsing/g_ltac.ml4 index fa2c111a68..a1b99de87b 100644 --- a/parsing/g_ltac.ml4 +++ b/parsing/g_ltac.ml4 @@ -173,7 +173,7 @@ GEXTEND Gram ; match_key: [ [ "match" -> Once - | "lazymatch" -> Lazy + | "lazymatch" -> Select | "multimatch" -> General ] ] ; input_fun: |
