A problem with startUp messages

Kevin Fisher kgf at golden.net
Thu Jun 28 17:40:20 UTC 2001


Hi Bob:

Thanks for the info...I'll regenerate my interpreter and see how things
go.

I checked Ian's site and 3.0-beta2 is still the latest and greatest
(which is what I use).


On Thu, Jun 28, 2001 at 12:36:28PM -0400, Bob Arning wrote:
> Kevin,
> 
> Generating a new interp.c from a current image will deal with the exception stuff, but you might see if any of the *n*x gurus can point you to a shortcut. Or you might try Ian Piumarta's site -- maybe there is a sufficiently recent VM there.
> 
> Cheers,
> Bob
> 
> On Thu, 28 Jun 2001 07:17:23 -0400 Kevin Fisher <kgf at golden.net> wrote:
> >This could then explain some oddness I'm seeing with text selections in Genie 
> >as well.  I'm using the stock UNIX VM from the ftp site...I'm assuming that it 
> >is lagging significantly behind the patches that have been flying around this 
> >list the past several months.
> >
> >Can this be rectified by generating a new interp.c, or is there a patch on the 
> >sqfixes archive?
> >
> >
> >
> >> Kevin,
> >> 
> >> This is a due to a VM which does not have the latest exception handling code. If you can't easily get a suitable VM, you can work around this problem by changing
> >> 
> >> file _ [fd readOnlyFileNamed: keysFileName] 
> >> 	on: FileDoesNotExistException do:[:ex| nil].
> >> 
> >> to
> >> 
> >> file _ [fd readOnlyFileNamed: keysFileName] 
> >> 	on: FileDoesNotExistException do:[:ex| ex resume: nil].
> >> 
> 





More information about the Squeak-dev mailing list