Re: [Pharo-project] Keymapping OB conflict (was Re: Chasing Browsers)

2011-12-05 Thread Lukas Renggli
Ok, then it must be something else.

I don't know why this Keymapping thing, but it is unlikely to work
with OB if it was not written for OB. As I said, OB managed its
keybindings itself.

Lukas

On 5 December 2011 03:51, Sean P. DeNigris s...@clipperadams.com wrote:

 Lukas Renggli wrote

 OB. This means, if you select the method and press Cmd+n it should


 Bummer, Cmd-n with a method name selected in OB system browser still brings
 up the non-chasing senders browser.

 --
 View this message in context: 
 http://forum.world.st/Chasing-Browsers-tp4102608p4159064.html
 Sent from the Pharo Smalltalk mailing list archive at Nabble.com.




-- 
Lukas Renggli
www.lukas-renggli.ch



Re: [Pharo-project] A possible bug in GZip streams

2011-12-05 Thread Martin Dias
(I am working on Pharo 1.3)

On Mon, Dec 5, 2011 at 2:16 AM, Martin Dias tinchod...@gmail.com wrote:

 Hi,

 I get a SubscriptOutOfBounds error when I evaluate:

 | aStream zipStream |

 aStream := ByteArray new writeStream binary.
 zipStream := GZipWriteStream on: aStream.
 zipStream nextStringPut: ''.
 zipStream nextStringPut: ''.
 zipStream close.
 aStream close.
  aStream := aStream contents readStream binary.
 zipStream := GZipReadStream on: aStream.
 zipStream nextString.
 zipStream nextString.
 zipStream close.
 aStream close.

 The error doesn't happen when I put just one string (instead of two).

 Do you see something wrong in the code? Should I report a bug?

 Thanks,
 Martín