<div dir="auto"><div><br><div class="gmail_extra"><br><div class="gmail_quote">On Nov 14, 2017 11:31 AM, "Tobias Pape" <<a href="mailto:Das.Linux@gmx.de">Das.Linux@gmx.de</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">YAY!<br></blockquote></div></div></div><div dir="auto">Agreed!  Never knew o wanted this but looking back over the years this would have been wonderful. </div><div dir="auto"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Thank you :D<br>
<br>
Best regards<br>
<font color="#888888">        -Tobias<br>
</font><div class="elided-text">> On 14.11.2017, at 20:29, <a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a> wrote:<br>
><br>
> Eliot Miranda uploaded a new version of Collections to project The Trunk:<br>
> <a href="http://source.squeak.org/trunk/Collections-eem.767.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/<wbr>trunk/Collections-eem.767.mcz</a><br>
><br>
> ==================== Summary ====================<br>
><br>
> Name: Collections-eem.767<br>
> Author: eem<br>
> Time: 14 November 2017, 11:29:19.620473 am<br>
> UUID: 9705b40c-d81d-4667-b9eb-<wbr>fbfccbe2e955<br>
> Ancestors: Collections-bp.766<br>
><br>
> Make the Transcript's characterLimit a preference.<br>
><br>
> =============== Diff against Collections-bp.766 ===============<br>
><br>
> Item was changed:<br>
>  WriteStream subclass: #TranscriptStream<br>
>       instanceVariableNames: 'lastChar'<br>
> +     classVariableNames: 'AccessSema CharacterLimit ForceUpdate RedirectToStdOut'<br>
> -     classVariableNames: 'AccessSema ForceUpdate RedirectToStdOut'<br>
>       poolDictionaries: ''<br>
>       category: 'Collections-Streams'!<br>
><br>
>  !TranscriptStream commentStamp: 'fbs 12/30/2013 09:53' prior: 0!<br>
>  This class is a much simpler implementation of Transcript protocol that supports multiple views and very simple conversion to morphic.  Because it inherits from Stream, it is automatically compatible with code that is designed to write to streams.!<br>
><br>
> Item was added:<br>
> + ----- Method: TranscriptStream class>>characterLimit (in category 'preferences') -----<br>
> + characterLimit<br>
> +     <preference: 'Maximum number of characters in a transcript'<br>
> +             categoryList: #(printing morphic debug)<br>
> +             description: 'When the number of characters in a transcript exceeds this limit, characters at the start of the text are discarded.'<br>
> +             type: #Number><br>
> +     ^CharacterLimit ifNil: [20000]!<br>
><br>
> Item was changed:<br>
>  ----- Method: TranscriptStream>><wbr>characterLimit (in category 'accessing') -----<br>
>  characterLimit<br>
>       "Tell the views how much to retain on screen"<br>
> +     ^self class characterLimit!<br>
> -     ^ 20000!<br>
><br>
><br>
<br>
<br>
</div></blockquote></div><br></div></div></div>