Skip to content

Commit 5337f42

Browse files
author
filliatr
committed
ocamlweb
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@163 85f007b7-540e-0410-9357-904b9bb8a0f7
1 parent 8d96293 commit 5337f42

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,13 @@ doc: doc/coq.tex
129129
LPLIB = lib/doc.tex $(LIB:.cmo=.mli)
130130
LPKERNEL = kernel/doc.tex $(KERNEL:.cmo=.mli)
131131
LPLIBRARY = library/doc.tex $(LIBRARY:.cmo=.mli)
132+
LPPRETYPING = pretyping/doc.tex pretyping/rawterm.mli $(PRETYPING:.cmo=.mli)
133+
LPPARSING =$(PARSING:.cmo=.mli)
132134
LPPROOFS = proofs/doc.tex $(PROOFS:.cmo=.mli)
133135
LPTACTICS = tactics/doc.tex $(TACTICS:.cmo=.mli)
134-
LPPRETYPING = pretyping/rawterm.mli $(PRETYPING:.cmo=.mli)
135136
LPTOPLEVEL = toplevel/doc.tex $(TOPLEVEL:.cmo=.mli)
136137
LPFILES = doc/macros.tex doc/intro.tex $(LPLIB) $(LPKERNEL) $(LPLIBRARY) \
137-
$(LPPROOFS) $(LPTACTICS) $(LPPRETYPING) $(LPTOPLEVEL)
138+
$(LPPRETYPING) $(LPPROOFS) $(LPTACTICS) $(LPTOPLEVEL)
138139

139140
doc/coq.tex: doc/preamble.tex $(LPFILES)
140141
cat doc/preamble.tex > doc/coq.tex

doc/intro.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
Utility libraries \dotfill & \refsec{lib} & \pageref{lib} \\[0.5em]
1818
Kernel \dotfill & \refsec{kernel} & \pageref{kernel} \\[0.5em]
1919
Library \dotfill & \refsec{library} & \pageref{library} \\[0.5em]
20+
Pretyping \dotfill & \refsec{pretyping} & \pageref{pretyping} \\[0.5em]
2021
Proof engine \dotfill & \refsec{proofs} & \pageref{proofs} \\[0.5em]
2122
Tactics \dotfill & \refsec{tactics} & \pageref{tactics} \\[0.5em]
22-
\dots & & \\[0.5em]
2323
Toplevel \dotfill & \refsec{toplevel}& \pageref{toplevel}\\[0.5em]
2424
\end{tabular}
2525
\end{center}

kernel/reduction.mli

+2-2
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ val whd_meta : (int * constr) list -> constr -> constr
181181
val plain_instance : (int * constr) list -> constr -> constr
182182
val instance : (int * constr) list -> 'a reduction_function
183183

184-
(* whd_ise raise Uninstantiated_evar if an evar remains uninstantiated *)
185-
(* the '*_ise1*' leave uninstantiated evar as it *)
184+
(* [whd_ise] raise [Uninstantiated_evar] if an evar remains uninstantiated *)
185+
(* the *[_ise1]* leave uninstantiated evar as it *)
186186

187187
exception Uninstantiated_evar of int
188188

pretyping/doc.tex

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
\newpage
3+
\section*{Pre-typing}
4+
5+
\ocwsection \label{pretyping}
6+
7+
\bigskip
8+
\begin{center}\epsfig{file=pretyping.dep.ps,width=\linewidth}\end{center}
9+
10+
11+
%%% Local Variables:
12+
%%% mode: latex
13+
%%% TeX-master: t
14+
%%% End:

pretyping/pretyping.mli

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ val ise_resolve : bool -> 'c evar_map -> (int * constr) list ->
4545
val ise_resolve_type : bool -> 'c evar_map -> (int * constr) list ->
4646
unsafe_env -> rawconstr -> typed_type
4747

48-
(* Call ise_resolve with empty metamap and fail_evar=true. The boolean says
48+
(* Call [ise_resolve] with empty metamap and [fail_evar=true]. The boolean says
4949
* if we must coerce to a type *)
5050
val ise_resolve1 : bool -> 'c evar_map -> unsafe_env -> rawconstr -> constr
5151

0 commit comments

Comments
 (0)