aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorherbelin2001-12-23 13:27:44 +0000
committerherbelin2001-12-23 13:27:44 +0000
commitc1a77be5df23c0a5b9f973c10b6fee42c42fec1b (patch)
tree12e1802ad37b0e034f087e3a2295dc51f4075e90 /doc
parentc32a1232598efeda80a7b13f504c13a1a4f8a360 (diff)
Avertissement de la non- gravit� du message d'erreur de parsing de \/ et /\
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8264 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/RefMan-lib.tex9
1 files changed, 3 insertions, 6 deletions
diff --git a/doc/RefMan-lib.tex b/doc/RefMan-lib.tex
index 89895a8a31..9677d3b5fd 100755
--- a/doc/RefMan-lib.tex
+++ b/doc/RefMan-lib.tex
@@ -102,12 +102,9 @@ First, we find propositional calculus connectives:
\ttindex{proj2}
\begin{coq_eval}
-(* We restate the grammar rule for /\ and \/ since *)
-(* it is only valid to parce Coq.Init.Logic.and *)
-Grammar constr constr6 :=
- myand [ constr5($c1) "/\\" constr6($c2) ] -> [ (and $c1 $c2) ]
-with constr7 :=
- myor [ constr6($c1) "\\/" constr7($c2) ] -> [ (or $c1 $c2) ].
+(********** Next parsing errors for /\ and \/ are harmless ***********)
+(******************* since output is not displayed *******************)
+(* Just to adjust the prompt: *) Set Printing Depth 50.
\end{coq_eval}
\begin{coq_example*}
Inductive True : Prop := I : True.