diff options
author | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2018-07-06 07:36:37 +0200 |
---|---|---|
committer | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2018-07-06 07:36:37 +0200 |
commit | 26643cdd013f5df2bcae099852932ac09e93f8fb (patch) | |
tree | cbebe1e80e4fabfcc7258016fe8b46ec8f0e8f26 /grammar | |
parent | 886ed2ee99e9ab9f0fc9aabac06a555d3beba19c (diff) |
Fix compilation of Coq with camlp5 master branch.
There was a conflict in the name of an exported function. A good argument in
favour of PR #7898.
Diffstat (limited to 'grammar')
-rw-r--r-- | grammar/coqpp_main.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/coqpp_main.ml b/grammar/coqpp_main.ml index ef591bc99..e76a1e9ed 100644 --- a/grammar/coqpp_main.ml +++ b/grammar/coqpp_main.ml @@ -250,7 +250,7 @@ let print_rule fmt r = let print_entry fmt gram e = let print_position_opt fmt pos = print_opt fmt print_position pos in let print_rules fmt rules = print_list fmt print_rule rules in - fprintf fmt "let () =@ @[%s.safe_extend@ %s@ @[(%a, %a)@]@]@ in@ " + fprintf fmt "let () =@ @[%s.gram_extend@ %s@ @[(%a, %a)@]@]@ in@ " gram e.gentry_name print_position_opt e.gentry_pos print_rules e.gentry_rules let print_ast fmt ext = |