Skip to content

Commit e3453e8

Browse files
committed
manual: remove special handling of In_channel and Out_channel
1 parent 55f984d commit e3453e8

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

api_docgen/ocamldoc/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ build/latex/Stdlib.tex: $(ALL_COMPILED_DOC) | build/latex
8989
$(V_OCAMLDOC)$(OCAMLDOC_RUN) -latex -o build/latex/all.tex \
9090
-hide Stdlib -lib Stdlib $(DOC_ALL_INCLUDES) \
9191
-sepfiles \
92+
-latex-escape-underscore "false" \
9293
-latextitle "1,subsection*" \
9394
-latextitle "2,subsubsection*" \
9495
-latex-type-prefix "TYP" \

manual/src/cmds/unified-options.etex

+2-2
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ After parsing, pipe the abstract syntax tree through the preprocessor
643643
\ifouthtml
644644
chapter~\ref{c:parsinglib}:
645645
\ahref{compilerlibref/Ast\_mapper.html}{ \texttt{Ast_mapper} }
646-
\else section~\ref{Ast-underscoremapper}\fi,
646+
\else section~\ref{Ast_mapper}\fi,
647647
implements the external interface of a preprocessor.
648648

649649
\item["-principal"]
@@ -702,7 +702,7 @@ compiler's intermediate representation of the program
702702
using "compiler-libs" library (see
703703
\ifouthtml chapter~\ref{c:parsinglib} and
704704
\ahref{compilerlibref/Compiler\_libs.html}{ \texttt{Compiler_libs} }
705-
\else section~\ref{Compiler-underscorelibs}\fi
705+
\else section~\ref{Compiler_libs}\fi
706706
).
707707
}%nat
708708

manual/src/library/compilerlibs.etex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\chapter{The compiler front-end} \label{c:parsinglib}\cutname{parsing.html}
2-
\label{Compiler-underscorelibs} % redirect references to compiler_libs.mld here
2+
\label{Compiler_libs} % redirect references to compiler_libs.mld here
33

44
This chapter describes the OCaml front-end, which declares the abstract
55
syntax tree used by the compiler, provides a way to parse, print

manual/src/library/stdlib-blurb.etex

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ integers
8282
\end{tabular}
8383
\subsubsection*{sss:stdlib-io}{input/output:}
8484
\begin{tabular}{lll}
85-
"In_channel" & p.~\stdpageref{In-underscorechannel} & input channels \\
86-
"Out_channel" & p.~\stdpageref{Out-underscorechannel} & output channels \\
85+
"In_channel" & p.~\stdpageref{In_channel} & input channels \\
86+
"Out_channel" & p.~\stdpageref{Out_channel} & output channels \\
8787
"Format" & p.~\stdpageref{Format} & pretty printing with automatic
8888
indentation and line breaking \\
8989
"Marshal" & p.~\stdpageref{Marshal} & marshaling of data structures \\

manual/tests/check-stdlib-modules

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cut -c 2- $TMPDIR/stdlib-$$-files \
1010
exitcode=0
1111
for i in `cat $TMPDIR/stdlib-$$-modules`; do
1212
case $i in
13-
Stdlib | Camlinternal* | *Labels | Obj | In_channel | Out_channel) continue;;
13+
Stdlib | Camlinternal* | *Labels | Obj ) continue;;
1414
Std_exit*) continue;;
1515
esac
1616
grep -q -e '"'$i'" & p\.~\\stdpageref{'$i'} &' $1/manual/src/library/stdlib-blurb.etex || {

0 commit comments

Comments
 (0)