aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbertot2003-01-24 12:53:46 +0000
committerbertot2003-01-24 12:53:46 +0000
commita35f72227565f84c309c057dd9f25229c9a613a5 (patch)
treea3de4265f0c9dfc895d1e03c4791f9467e723a3a
parent25587995a9b4b1806841f51b2e3bb48d6b1d90cb (diff)
Inspect does not work for pcoq and there is no simple fix because inspect
has not be put among the hooks in the pcoq_hook structure. As a temporary solution, we use a replacement command named "Pcoq_inspect" that behaves like Inspect 15. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3610 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--contrib/interface/centaur.ml44
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/interface/centaur.ml4 b/contrib/interface/centaur.ml4
index f51570394b..a2dcd7e20d 100644
--- a/contrib/interface/centaur.ml4
+++ b/contrib/interface/centaur.ml4
@@ -956,6 +956,10 @@ VERNAC COMMAND EXTEND StartPcoq
[ "Start" "Pcoq" "Mode" ] -> [ start_pcoq () ]
END
+VERNAC COMMAND EXTEND Pcoq_inspect
+ [ "Pcoq_inspect" ] -> [ inspect 15 ]
+END
+
VERNAC COMMAND EXTEND StartPcoqDebug
| [ "Start" "Pcoq" "Debug" "Mode" ] -> [ start_pcoq_debug () ]
END