I&#39;m seeing the character ^D inserted into argument strings that are about 256 characters long with GHC 6.8.2.&nbsp; Anyone else?<br><br>Test.hs:<br><br>module Main where<br><br>import System.Environment<br>import System.IO<br>
<br>main =<br>&nbsp;&nbsp;&nbsp; do args &lt;- getArgs<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; hPutStrLn stderr (&quot;args: &quot; ++ show args)<br><br><br>Output:<br><br>$ ghc6 --make Test.hs -o test<br>[1 of 1] Compiling Main&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ( Test.hs, Test.o )<br>Linking test ...<br>
$ ./test &quot;012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789&quot;<br>
args: [&quot;01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234\EOT5678901234567890123456789&quot;]<br>
<br>