<body><div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000;text-align: left" dir="ltr">
                                        Hi Christoph --<div><br></div><div>+1</div><div><br></div><div>If we do not treat an NBSP as a delimiter, it could sneak into symbols without knowing or seeing it.</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;'>
                        <p style='color: #AAAAAA; margin-top: 10px;'>Am 01.04.2022 18:41:18 schrieb commits@source.squeak.org <commits@source.squeak.org>:</p><div style='font-family:Arial,Helvetica,sans-serif'>A new version of Compiler was added to project The Inbox: <br>http://source.squeak.org/inbox/Compiler-ct.473.mcz <br> <br>==================== Summary ==================== <br> <br>Name: Compiler-ct.473 <br>Author: ct <br>Time: 1 April 2022, 6:41:06.522422 pm <br>UUID: fa612011-d500-8946-a772-b460d0743c67 <br>Ancestors: Compiler-eem.472 <br> <br>Proposal: Treat non-breaking space (16ra0) as delimiter in parser/scanner. <br> <br>      Compiler evaluate: '2 +?3'. <br> <br>=============== Diff against Compiler-eem.472 =============== <br> <br>Item was changed: <br>  ----- Method: Scanner class>>initializeTypeTable (in category 'initialization') ----- <br>  initializeTypeTable <br>      "self initializeTypeTable" <br>   <br>      | newTable | <br>      newTable := Array new: 256 withAll: #xBinary. "default" <br>+     newTable atAll: #(9 10 12 13 32 16ra0) put: #xDelimiter. "tab lf ff cr space nbsp" <br>-     newTable atAll: #(9 10 12 13 32 ) put: #xDelimiter. "tab lf ff cr space" <br>      newTable atAll: ($0 asciiValue to: $9 asciiValue) put: #xDigit. <br>   <br>      1 to: 255 <br>              do: [:index | <br>                      (Character value: index) isLetter <br>                              ifTrue: [newTable at: index put: #xLetter]]. <br>   <br>      newTable at: $" asciiValue put: #xDoubleQuote. <br>      newTable at: $# asciiValue put: #xLitQuote. <br>      newTable at: $$ asciiValue put: #xDollar. <br>      newTable at: $' asciiValue put: #xSingleQuote. <br>      newTable at: $: asciiValue put: #xColon. <br>      newTable at: $( asciiValue put: #leftParenthesis. <br>      newTable at: $) asciiValue put: #rightParenthesis. <br>      newTable at: $. asciiValue put: #period. <br>      newTable at: $; asciiValue put: #semicolon. <br>      newTable at: $[ asciiValue put: #leftBracket. <br>      newTable at: $] asciiValue put: #rightBracket. <br>      newTable at: ${ asciiValue put: #leftBrace. <br>      newTable at: $} asciiValue put: #rightBrace. <br>      newTable at: $^ asciiValue put: #upArrow. <br>      newTable at: $_ asciiValue put: #xUnderscore. <br>      newTable at: $| asciiValue put: #verticalBar. <br>      TypeTable := newTable "bon voyage!!"! <br> <br><br></div></blockquote>
                                        </div></body>