diff options
-rw-r--r-- | docs/users_guide/ghci.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/users_guide/ghci.xml b/docs/users_guide/ghci.xml index c0167bfe09..86bfa8fc0c 100644 --- a/docs/users_guide/ghci.xml +++ b/docs/users_guide/ghci.xml @@ -2587,6 +2587,18 @@ Prelude> :set -fno-glasgow-exts <para>See <xref linkend="ghci-windows"/>.</para> </listitem> </varlistentry> + + <varlistentry> + <term>The default buffering mode is different in GHCi to GHC.</term> + <listitem> + <para> + In GHC, the stdout handle is line-buffered by default. + However, in GHCi we turn off the buffering on stdout, + because this is normally what you want in an interpreter: + output appears as it is generated. + </para> + </listitem> + </varlistentry> </variablelist> </sect1> |