Two bugs fixed in documentation.
This commit is contained in:
parent
4e2a44c525
commit
3892bfd7b5
Binary file not shown.
|
@ -142,7 +142,7 @@ Ikarus Scheme User's Guide
|
||||||
% \rnrs{6} Crash Course\\
|
% \rnrs{6} Crash Course\\
|
||||||
% Ikarus
|
% Ikarus
|
||||||
(Preliminary Document)
|
(Preliminary Document)
|
||||||
\hfill Version~0.0.1+
|
\hfill Version~0.0.2-rc1+
|
||||||
}
|
}
|
||||||
\vfill
|
\vfill
|
||||||
{
|
{
|
||||||
|
@ -1050,8 +1050,8 @@ different Scheme implementations, we recommend adding the
|
||||||
\texttt{\#!r6rs} token to the top of every script and library that
|
\texttt{\#!r6rs} token to the top of every script and library that
|
||||||
you write. This allows Ikarus to alert you when using non-portable
|
you write. This allows Ikarus to alert you when using non-portable
|
||||||
features. If you're writing code that's intended to be
|
features. If you're writing code that's intended to be
|
||||||
Ikarus-specific, we adding the \texttt{\#!ikarus} token in order to
|
Ikarus-specific, we recommend adding the \texttt{\#!ikarus} token in
|
||||||
get an immediate error when your code is run under other
|
order to get an immediate error when your code is run under other
|
||||||
implementations.
|
implementations.
|
||||||
|
|
||||||
\defun{port-mode}{procedure}
|
\defun{port-mode}{procedure}
|
||||||
|
@ -1065,11 +1065,11 @@ extensions. When the \texttt{\#!r6rs} token is read from a port,
|
||||||
its mode changes to \texttt{ikarus-mode}.
|
its mode changes to \texttt{ikarus-mode}.
|
||||||
|
|
||||||
\begin{verbatim}
|
\begin{verbatim}
|
||||||
$ (port-mode (current-input-port))
|
> (port-mode (current-input-port))
|
||||||
ikarus-mode
|
ikarus-mode
|
||||||
$ #!r6rs (port-mode (current-input-port))
|
> #!r6rs (port-mode (current-input-port))
|
||||||
r6rs-mode
|
r6rs-mode
|
||||||
$ #!ikarus (port-mode (current-input-port))
|
> #!ikarus (port-mode (current-input-port))
|
||||||
ikarus-mode
|
ikarus-mode
|
||||||
\end{verbatim}
|
\end{verbatim}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue