diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2006-12-08 11:54:12 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2006-12-08 11:54:12 +0000 |
commit | 1763f6d54faa518b9401c04f704d3851e0c4b1ca (patch) | |
tree | 885e126e9e136a5066e107779b470ddef6428b6b /toplevel | |
parent | fbae415d5ebc30e67fdfcd9bd9515490d8e97cef (diff) |
Suite ajout option -output-context
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9416 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'toplevel')
-rw-r--r-- | toplevel/coqtop.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toplevel/coqtop.ml b/toplevel/coqtop.ml index 94c6ed1f5..d64fb38e5 100644 --- a/toplevel/coqtop.ml +++ b/toplevel/coqtop.ml @@ -335,7 +335,8 @@ let init is_ide = end; if !batch_mode then (flush_all(); - if !output_context then Pp.ppnl (Prettyp.print_full_pure_context ()); + if !output_context then + Pp.ppnl (with_option raw_print Prettyp.print_full_pure_context ()); Profile.print_profile (); exit 0); Lib.declare_initial_state () |