diff options
| author | herbelin | 2008-05-25 15:57:04 +0000 |
|---|---|---|
| committer | herbelin | 2008-05-25 15:57:04 +0000 |
| commit | 1576be137b46512088ed6f4cbad3dca7bd75d4e8 (patch) | |
| tree | 9f7fa428c1b2a501168048934ce26387cdfec85a /toplevel | |
| parent | 9fec60111a49960a01ffdd863d69fea57960edc5 (diff) | |
- Nouvelle option "Set Printing Existential Instances" pour forcer
l'affichage des instances des evars.
- Nouveaux boutons "interrupteurs" pour activer/désactiver à volonté
l'affichage des implicites, coercions, notations, etc dans CoqIDE
(reste à trouver des icônes appropriées !).
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10983 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'toplevel')
| -rw-r--r-- | toplevel/vernacentries.ml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/toplevel/vernacentries.ml b/toplevel/vernacentries.ml index 8c92329e5e..49690256c3 100644 --- a/toplevel/vernacentries.ml +++ b/toplevel/vernacentries.ml @@ -773,6 +773,13 @@ let _ = let _ = declare_bool_option { optsync = true; + optname = "printing of existential variable instances"; + optkey = (TertiaryTable ("Printing","Existential","Instances")); + optread = (fun () -> !Constrextern.print_evar_arguments); + optwrite = (:=) Constrextern.print_evar_arguments } +let _ = + declare_bool_option + { optsync = true; optname = "implicit arguments printing"; optkey = (SecondaryTable ("Printing","Implicit")); optread = (fun () -> !Constrextern.print_implicits); @@ -870,7 +877,7 @@ let _ = declare_bool_option { optsync=true; optkey=SecondaryTable("Printing","Universes"); - optname="the printing of universes"; + optname="printing of universes"; optread=(fun () -> !Constrextern.print_universes); optwrite=(fun b -> Constrextern.print_universes:=b) } |
