smalltalk_r.rc
author Claus Gittinger <cg@exept.de>
Mon, 18 Oct 1999 10:19:04 +0200
changeset 392 386c03e96039
parent 240 e19401c13dc6
child 396 a17124ca4b63
permissions -rw-r--r--
*** empty log message ***

"/
"/ $Header$
"/
"/ ST/X startup configuration & command file:
"/
"/ restart configuration for smalltalk
"/
"/ this file plays the role of smalltalk.rc when an image
"/ is restarted. Usually, everything should stay as it was,
"/ except for things like keyboard mapping (if running on another display)
"/
"/ notice, that all views and things have already been restored when this
"/ script is run ....
"/

"/
"/ this handles all variant display stuff
"/ (i.e. things which might change, when DISPLAY is set different)
"/
Smalltalk fileIn:'display.rc'.

"/
"/ this defines stuff relating to the machine we are running on
"/ (which may also be different after a snapIn)
"/
Smalltalk fileIn:'host.rc'.

"/
"/ if the image was saved with the dynamic compiler turned on,
"/ turn it on again.
"/ If you encounter any problems with it, remove the line below.
"/
ObjectMemory reEnableJustInTimeCompilation.