On Friday 19 May 2017 05:40 PM, Damien Pollet wrote:
I wouldn't want to sound sarcastic, but I'm not sure there is such a concept as "correct" in the context of ANSI escape sequences. Still, according to the legends, 97 is supposed to be high intensity white (for some subset of existing implementations).
;-). My context was command line usage in linux terminals. Anyway, attached is a patch for the annoying bug which fixed the problem for me. I would appreciate if anyone else using the command line can confirm if the patch works for them. E.g. ~~~~ $ ./pharo Pharo.image eval 'ProtoObject methodDict size\;^MProtoObject methodDict keys' Syntax Error on line 1: 'Variable or expression expected' ========================================================= 1: ProtoObject methodDict size\; _^_ 2: ProtoObject methodDict keys $ ./pharo Pharo.image eval 'ProtoObject methodDict size.^MProtoObject methodDict keys;' Syntax Error on line 2: 'Message expected' ========================================== 1: ProtoObject methodDict size. 2: ProtoObject methodDict keys; _^_ $ ~~~~ Thanks .. Subbu