<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000;text-align: left" dir="ltr">
                                        One more thing: Also changes the printString of ASCII-13 to #return because it seems more readable than #cr.<div><br></div><div>Note that I pushed readability more into the direction of recognizing physical keys, not standard ASCII labels. I hope that's fine... In that sense, the printString for #lf might be also changed to #linefeed, which is already there.</div><div><br></div><div>But is there a keyboard with a line-feed key? I know that the "Enter" key on the num pad does not arrive as ASCII-3 (ETX, end-of-text) on all systems, right?</div><div><br></div><div>Best,</div><div>Marcel</div><div class="mb_sig"></div>
                                        <blockquote class="history_container" type="cite" style="border-left-style: solid;border-width: 1px;margin-top: 20px;margin-left: 0px;padding-left: 10px;min-width: 500px">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 18.06.2021 08:03:02 schrieb commits@source.squeak.org <commits@source.squeak.org>:</p><div style="font-family:Arial,Helvetica,sans-serif">Marcel Taeumel uploaded a new version of Collections to project The Trunk:<br>http://source.squeak.org/trunk/Collections-mt.945.mcz<br><br>==================== Summary ====================<br><br>Name: Collections-mt.945<br>Author: mt<br>Time: 18 June 2021, 8:02:50.788904 am<br>UUID: d551c74f-90b4-400a-8952-d9d4ff31e3bb<br>Ancestors: Collections-eem.944<br><br>Extends constant character names to support #return.<br><br>Fixes constant character names to work with all current constants, which, e.g., includes #arrowUp etc.<br><br>Drop #newPage in favor of #pageDown (and #pageUp). Note that #newPage still works as a constant. It will just not show up when you print a non-printable character.<br><br>=============== Diff against Collections-eem.944 ===============<br><br>Item was changed:<br>  ----- Method: Character class>>constantNames (in category 'private') -----<br>  constantNames<br>+       ^ #( backspace delete return lf enter delete escape null space tab arrowDown arrowUp arrowLeft arrowRight end home pageDown pageUp euro insert )!<br>-    ^ #( backspace cr delete escape lf null newPage space tab ).!<br><br>Item was added:<br>+ ----- Method: Character class>>return (in category 'accessing untypeable characters') -----<br>+ return<br>+      "Answer the Character representing a carriage return."<br>+ <br>+         ^self value: 13!<br><br><br></div></blockquote></div>