aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Parse.ml
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Parse.ml')
-rw-r--r--cparser/Parse.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Parse.ml b/cparser/Parse.ml
index 2c467a76..0fc85bf3 100644
--- a/cparser/Parse.ml
+++ b/cparser/Parse.ml
@@ -44,7 +44,7 @@ let preprocessed_file transfs name sourcefile =
let ic = open_in sourcefile in
let p =
try
- Rename.program (transform_program t (Elab.elab_preprocessed_file name ic))
+ transform_program t (Elab.elab_preprocessed_file name ic)
with Parsing.Parse_error ->
Errors.error "Error during parsing"; []
| Errors.Abort ->