aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Herbelin2016-10-12 17:49:50 +0200
committerHugo Herbelin2016-10-17 20:14:12 +0200
commite4fcf8f9af193f125eb6ee101e739ba4460bd8b8 (patch)
treec89b361fd4a6e6ea28b9d30be1696e8f50b257c3
parent34b1813b5adf1df556e0d8a05bde0ec58152f610 (diff)
Fix compilation with camlp4 broken in 8a8caba3.
-rw-r--r--parsing/compat.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/compat.ml4 b/parsing/compat.ml4
index ecf515111c..26e07c2f2c 100644
--- a/parsing/compat.ml4
+++ b/parsing/compat.ml4
@@ -273,7 +273,7 @@ module GrammarMake (L:LexerSig) : GrammarSig = struct
a
with e ->
L.restore_comments_state L.default_comments_state;
- raise e
+ Pervasives.raise e
let entry_print ft x = Entry.print ft x
let srules' = srules (entry_create "dummy")
end