diff -r 6cb30063ea41 -r db5d473df9f0 smalltalk.rc --- a/smalltalk.rc Wed Feb 22 03:49:28 1995 +0100 +++ b/smalltalk.rc Sat Mar 18 06:30:14 1995 +0100 @@ -64,8 +64,10 @@ '***** directory(s) named: ' errorPrint. missing errorPrint. 'incomplete/not existing' errorPrintNL. '***** your path is: ' errorPrint. Smalltalk systemPath asArray storeString errorPrintNL. + '*****' errorPrintNL. - '***** Try "make source bitmaps resources styles" to fix this.' errorPrintNL. + '***** Try: "make source bitmaps resources styles"' errorPrintNL. + '***** or: "make symlinks" to fix this.' errorPrintNL. '***********************************************************************' errorPrintNL. ] ! @@ -94,27 +96,36 @@ "/ Display unBuffered. "* - * this starts incremental GC earlier + * this starts the incremental GC earlier * (default is 500000) * the number given is the number of bytes which have to be allocated * since the last GC, to start the incremental GC running. + * (see ObjectMemory>>documentation) + * Claus: I moved this to the private.rc file *" "/ ObjectMemory incrementalGCLimit:100000. "* + * this starts the incremental GC when freeSpace drops below a limit + * (default is nil - i.e. dont look at freeSpace) + * (see ObjectMemory>>documentation) + * Claus: I moved this to the private.rc file + *" +"/ ObjectMemory freeSpaceGCLimit:300000. + +"* * lazy loading * (faster fileIn) - this is EXPERIMENTAL. * If there are any problems with lazy methods, disable the following * and let me (cg@ssw.de) know what happened. *" - Autoload compileLazy:true. "* * define the language (you can also set the LANG-shell variable) * (currently only #english and #german are supported) * setting it here will override the LANG variable setting, - * if neither set here nor in LANG, english is the default. + * if neither set here nor in LANG, #english is the default. * (currently, strings are not available for other than english * and german; french will follow next - see resource files) *"