diff options
| author | Pierre-Marie Pédrot | 2017-08-29 22:51:37 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2017-08-29 22:51:37 +0200 |
| commit | 93e888000664191fa608a8fa0f8057bdda8fe084 (patch) | |
| tree | 6213dc7a69e4ed2db645afed5bbeb5227515a910 /src | |
| parent | ba68fcd85dd38f0094c8eac157080670354e473e (diff) | |
Fix printing of Ltac2 in quotations.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tac2core.ml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tac2core.ml b/src/tac2core.ml index 7d18bf693e..95fd29ec33 100644 --- a/src/tac2core.ml +++ b/src/tac2core.ml @@ -806,6 +806,12 @@ let () = in Geninterp.register_interp0 wit_ltac2 interp +let () = + let pr_raw _ = mt () in + let pr_glb e = Tac2print.pr_glbexpr e in + let pr_top _ = mt () in + Genprint.register_print0 wit_ltac2 pr_raw pr_glb pr_top + (** Built-in notation scopes *) let add_scope s f = |
