private.rc
author Claus Gittinger <cg@exept.de>
Mon, 15 Jul 1996 17:07:08 +0200
changeset 123 a974136fe017
parent 118 904a6d2432d6
child 126 565643e43074
permissions -rw-r--r--
startup infoPrinting suppressable (-q flag)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bf0b63015196 Initial revision
claus
parents:
diff changeset
     1
"*
bf0b63015196 Initial revision
claus
parents:
diff changeset
     2
 * $Header$
bf0b63015196 Initial revision
claus
parents:
diff changeset
     3
 *
bf0b63015196 Initial revision
claus
parents:
diff changeset
     4
 * sample private.rc - file
bf0b63015196 Initial revision
claus
parents:
diff changeset
     5
 *
52
c9b78dd69444 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 44
diff changeset
     6
 * a copy of this file can (should) reside in $home/.smalltalk/private.rc or
c9b78dd69444 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 44
diff changeset
     7
 * in the current directory - put all private preferences in here.
41
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
     8
 *
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
     9
 *
25
claus
parents: 24
diff changeset
    10
 * notice, you will find some things enclosed in
claus
parents: 24
diff changeset
    11
 *  ... getLoginName = 'claus' ifTrue:[
claus
parents: 24
diff changeset
    12
 *      
claus
parents: 24
diff changeset
    13
 * these are my personal preferrences which will be
claus
parents: 24
diff changeset
    14
 * ignored in your environment, but are taken in mine.
claus
parents: 24
diff changeset
    15
 * That way, I dont have to maintain two different 'private.rc' files.
claus
parents: 24
diff changeset
    16
 * (you may want to have a look into it - some is of general interrest)
4
bf0b63015196 Initial revision
claus
parents:
diff changeset
    17
 *"
bf0b63015196 Initial revision
claus
parents:
diff changeset
    18
25
claus
parents: 24
diff changeset
    19
"/
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    20
"/ I want the hostname to be prepended to a windows label
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    21
"/
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    22
StandardSystemView includeHostNameInLabel:true.
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    23
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    24
"/
25
claus
parents: 24
diff changeset
    25
"/ this turns off error/fatal messages from the VM
claus
parents: 24
diff changeset
    26
"/ (it does not really make sense to turn them off)
claus
parents: 24
diff changeset
    27
"/
claus
parents: 24
diff changeset
    28
"/ Smalltalk debugPrinting:false.
claus
parents: 24
diff changeset
    29
claus
parents: 24
diff changeset
    30
"/
claus
parents: 24
diff changeset
    31
"/ set the package for fileIns done below
claus
parents: 24
diff changeset
    32
"/
24
claus
parents: 21
diff changeset
    33
Project notNil ifTrue:[
claus
parents: 21
diff changeset
    34
    Project setDefaultProject.
25
claus
parents: 24
diff changeset
    35
    Project current packageName:#'goody-fileIn'.
24
claus
parents: 21
diff changeset
    36
].
claus
parents: 21
diff changeset
    37
!
claus
parents: 21
diff changeset
    38
91
b7958b5a790b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 77
diff changeset
    39
|whoAmI|
b7958b5a790b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 77
diff changeset
    40
123
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
    41
'reading keyboard.rc ...' infoPrintCR.
41
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
    42
Smalltalk fileIn:'keyboard.rc'.
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    43
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    44
"/
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    45
"/ no matter what the 'display.rc' says:
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    46
"/     I want my #iris style ...
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    47
"/
77
3ec9d8e38918 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 64
diff changeset
    48
View defaultStyle:#iris.
3ec9d8e38918 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 64
diff changeset
    49
"/ View defaultStyle:#motif.
25
claus
parents: 24
diff changeset
    50
104
b9ab60d45f9b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 91
diff changeset
    51
b9ab60d45f9b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 91
diff changeset
    52
25
claus
parents: 24
diff changeset
    53
"/ add my private directories to the searchPath ...
claus
parents: 24
diff changeset
    54
"/ This does not make sense in your environment.
claus
parents: 24
diff changeset
    55
"/ However, I leave the code here to show how its done.
claus
parents: 24
diff changeset
    56
"/
24
claus
parents: 21
diff changeset
    57
Smalltalk systemPath addFirst:'../..'.
claus
parents: 21
diff changeset
    58
91
b7958b5a790b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 77
diff changeset
    59
whoAmI := OperatingSystem getLoginName.
b7958b5a790b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 77
diff changeset
    60
b7958b5a790b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 77
diff changeset
    61
(whoAmI = 'claus' or:[whoAmI = 'cg']) ifTrue:[
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    62
    Smalltalk systemPath addFirst:'../../not_delivered'.
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    63
    Smalltalk systemPath addFirst:'../../private_classes'.
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
    64
    Smalltalk systemPath addFirst:'../../fileIn/not_delivered'.
25
claus
parents: 24
diff changeset
    65
    Smalltalk systemPath addFirst:'../../libpro'.
16
db5d473df9f0 *** empty log message ***
claus
parents: 12
diff changeset
    66
].
25
claus
parents: 24
diff changeset
    67
claus
parents: 24
diff changeset
    68
"/ since smalltalk keeps track of which directories exist
claus
parents: 24
diff changeset
    69
"/ in the path, this cache has to be flushed whenever new directories
claus
parents: 24
diff changeset
    70
"/ are added to the path:
claus
parents: 24
diff changeset
    71
"/
24
claus
parents: 21
diff changeset
    72
Smalltalk flushPathCaches.
16
db5d473df9f0 *** empty log message ***
claus
parents: 12
diff changeset
    73
25
claus
parents: 24
diff changeset
    74
"/
claus
parents: 24
diff changeset
    75
"/ color allocation strategy:
claus
parents: 24
diff changeset
    76
"/
claus
parents: 24
diff changeset
    77
"/ the default is to allocate from the colormap as required.
claus
parents: 24
diff changeset
    78
"/ As long as the number of distinct colors used is less than the number
claus
parents: 24
diff changeset
    79
"/ of available colors (which is usually the case) this leads to better looking
claus
parents: 24
diff changeset
    80
"/ images.
claus
parents: 24
diff changeset
    81
"/ However, if many images are to be displayed simulatiously, images displayed
claus
parents: 24
diff changeset
    82
"/ first may steal too many colors required in images displayed later.
claus
parents: 24
diff changeset
    83
"/ In this case, it is better to preallocate some colors, and dither all images
claus
parents: 24
diff changeset
    84
"/ using theese. Of course, while making the worst case better, this makes
claus
parents: 24
diff changeset
    85
"/ the best case worse. You can decide ...
claus
parents: 24
diff changeset
    86
"/
10
43d0db9ff204 *** empty log message ***
claus
parents: 8
diff changeset
    87
"/   Color getColors6x6x4.
43d0db9ff204 *** empty log message ***
claus
parents: 8
diff changeset
    88
43d0db9ff204 *** empty log message ***
claus
parents: 8
diff changeset
    89
25
claus
parents: 24
diff changeset
    90
"/ The following loads some nice cursors; for example thumbsUp and thumbsDown
claus
parents: 24
diff changeset
    91
"/
claus
parents: 24
diff changeset
    92
"/ claus:
claus
parents: 24
diff changeset
    93
"/     I like those fancy cursors :-)
claus
parents: 24
diff changeset
    94
"/     if you think this is too 'childish', remove the line below ...
claus
parents: 24
diff changeset
    95
"/
claus
parents: 24
diff changeset
    96
"/
123
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
    97
"/ 'loading fancy cursors ...' infoPrintCR.
118
904a6d2432d6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 116
diff changeset
    98
Cursor initializeNewCursors.
10
43d0db9ff204 *** empty log message ***
claus
parents: 8
diff changeset
    99
25
claus
parents: 24
diff changeset
   100
claus
parents: 24
diff changeset
   101
"/ claus:
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   102
"/     The history manager automatically adds a history line to changed
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   103
"/     methods and optionally to a classes history method.
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   104
"/
91
b7958b5a790b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 77
diff changeset
   105
(whoAmI = 'claus' or:[whoAmI = 'cg']) ifTrue:[
12
d8d2f32ca7a2 *** empty log message ***
claus
parents: 10
diff changeset
   106
    Compiler warnSTXSpecials:false.
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   107
    HistoryManager notNil ifTrue:[
123
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   108
	'activating HistoryManager ...' infoPrintCR.
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   109
	HistoryManager activate.
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   110
    ]
7
57c09d1b7f69 *** empty log message ***
claus
parents: 4
diff changeset
   111
].
41
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
   112
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
   113
"/ claus:
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
   114
"/     I dont want those warnings about stx features being non-portable ...
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
   115
"/     However, you should (at least when new to the system) see them.
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
   116
"/     Once you get bored about them, make the below unconditional.
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
   117
"/     (you can also turn them off in the NewLaunchers settings menu ...)
d61cda45c461 separated keyboard macros
Claus Gittinger <cg@exept.de>
parents: 26
diff changeset
   118
"/
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   119
Compiler allowUnderscoreInIdentifier:true. 
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   120
Compiler warnUnderscoreInIdentifier:false. 
10
43d0db9ff204 *** empty log message ***
claus
parents: 8
diff changeset
   121
25
claus
parents: 24
diff changeset
   122
claus
parents: 24
diff changeset
   123
"/ this is a temporary kludge: specify the flags to be used
claus
parents: 24
diff changeset
   124
"/ when compiling via stc. Primitive compilation (from within the browser)
claus
parents: 24
diff changeset
   125
"/ is still experimental. So you better not care (yet)
claus
parents: 24
diff changeset
   126
"/ BTW: its only supported on UnixWare and SGI anyway 
claus
parents: 24
diff changeset
   127
"/      (and not in the free demo release).
claus
parents: 24
diff changeset
   128
"/
claus
parents: 24
diff changeset
   129
Compiler stcCompilation:#default.
10
43d0db9ff204 *** empty log message ***
claus
parents: 8
diff changeset
   130
OperatingSystem getOSType = 'irix' ifTrue:[
64
81bab431b2b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 52
diff changeset
   131
    Compiler stcCompilationIncludes:'-I../../include -I../../libPVM/pvm3/include -I../../libPVM/pvm3/pvmgs'.
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   132
    Compiler stcCompilationDefines:'-DGLX'.
10
43d0db9ff204 *** empty log message ***
claus
parents: 8
diff changeset
   133
] ifFalse:[
64
81bab431b2b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 52
diff changeset
   134
    Compiler stcCompilationIncludes:'-I../../include -I../../support/VGL/vogl/src -I../../libPVM/pvm3/include -I../../libPVM/pvm3/pvmgs'.
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   135
    Compiler stcCompilationDefines:'-DVGL'.
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   136
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   137
"/
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   138
"/ disabled; thats the default anyway ....
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   139
"/
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   140
"/    OperatingSystem getOSType = 'linux' ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   141
"/      ObjectFileLoader searchedLibraries:#('/usr/lib/libc.a')
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   142
"/    ]
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   143
25
claus
parents: 24
diff changeset
   144
].
64
81bab431b2b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 52
diff changeset
   145
Compiler stcCompilationOptions:'+optinline +inlineNew -O'.
7
57c09d1b7f69 *** empty log message ***
claus
parents: 4
diff changeset
   146
25
claus
parents: 24
diff changeset
   147
"/ experimental: try to always keep some bytes in the pocket
64
81bab431b2b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 52
diff changeset
   148
"/ this changes the memory policy, to start the background collector whenever
25
claus
parents: 24
diff changeset
   149
"/ freespace drops below 250k or 500k have been allocated since the last GC. 
claus
parents: 24
diff changeset
   150
"/ AND to allocate more memory, if (after the collect) less than 1Mb is free.
claus
parents: 24
diff changeset
   151
"/ Doing so makes the system behave better if lots of memory is required
64
81bab431b2b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 52
diff changeset
   152
"/ for short periods of time, since it prepares itself for that situation
25
claus
parents: 24
diff changeset
   153
"/ during idle time. (I often walk around in the fileBrowser, loading big
claus
parents: 24
diff changeset
   154
"/ files like XWorkstation.st or SystemBrowser.st ....)
claus
parents: 24
diff changeset
   155
"/
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   156
ObjectMemory freeSpaceGCAmount:1000000. 
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   157
ObjectMemory freeSpaceGCLimit:250000. 
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   158
ObjectMemory incrementalGCLimit:500000. 
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   159
ObjectMemory startBackgroundCollectorAt:5. 
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   160
ObjectMemory startBackgroundFinalizationAt:5. 
25
claus
parents: 24
diff changeset
   161
claus
parents: 24
diff changeset
   162
"/ experimental: configure the memory manager to quickly increase
claus
parents: 24
diff changeset
   163
"/ its oldSpace, as long as it stays below 8Mb (i.e. do not enter
claus
parents: 24
diff changeset
   164
"/ a blocking mark&sweep or compress, but go straight ahead increasing
claus
parents: 24
diff changeset
   165
"/ the oldSpace). Above that, behave as usual, i.e. try a GC first,
claus
parents: 24
diff changeset
   166
"/ then increase the oldSpace size if that did not help.
claus
parents: 24
diff changeset
   167
"/ If you have a machine with lots of (real) memory, you may want to
claus
parents: 24
diff changeset
   168
"/ increase the number. The value below should be ok for 16-32Mb machines.
claus
parents: 24
diff changeset
   169
"/
26
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   170
ObjectMemory fastMoreOldSpaceLimit:8*1024*1024.
Claus Gittinger <cg@exept.de>
parents: 25
diff changeset
   171
ObjectMemory fastMoreOldSpaceAllocation:true.
16
db5d473df9f0 *** empty log message ***
claus
parents: 12
diff changeset
   172
!
db5d473df9f0 *** empty log message ***
claus
parents: 12
diff changeset
   173
25
claus
parents: 24
diff changeset
   174
"/ another experimental (and a secret for now, since I dont want
claus
parents: 24
diff changeset
   175
"/ you to play with those ;-)
claus
parents: 24
diff changeset
   176
"/ For now, this is experimental. Once the best numbers
claus
parents: 24
diff changeset
   177
"/ have been found, I'll hardwire them and document it ...
claus
parents: 24
diff changeset
   178
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   179
|a|
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   180
ObjectMemory newSpaceSize > (500*1024) ifTrue:[
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   181
    a := #(nil nil nil nil -16 -4 -2 -2 0 0 16 nil) copy.
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   182
] ifFalse:[
17
fde6fd32e9de *** empty log message ***
claus
parents: 16
diff changeset
   183
"/         min max cpy /32 /16 /8 /4 /2 /4 /8 /16 /32 "
25
claus
parents: 24
diff changeset
   184
    "/
claus
parents: 24
diff changeset
   185
    "/ slow tenure - keeps objects longer in newSpace,
claus
parents: 24
diff changeset
   186
    "/  producing more scavenge overhead, but releasing IGC somewhat
claus
parents: 24
diff changeset
   187
    "/
17
fde6fd32e9de *** empty log message ***
claus
parents: 16
diff changeset
   188
"/  a := #(nil nil nil -100 -8 -4 -1  1 2  4  8   16 nil) copy.
fde6fd32e9de *** empty log message ***
claus
parents: 16
diff changeset
   189
"/  a := #(nil nil nil nil -16 -4  0  0  0 4 16 nil) copy.
25
claus
parents: 24
diff changeset
   190
17
fde6fd32e9de *** empty log message ***
claus
parents: 16
diff changeset
   191
    "fast tenure"
25
claus
parents: 24
diff changeset
   192
    "/
claus
parents: 24
diff changeset
   193
    "/ fast tenure - moves objects earlier into oldSpace,
claus
parents: 24
diff changeset
   194
    "/ releasing newSpace collector; however, the oldSpace IGC
claus
parents: 24
diff changeset
   195
    "/ may have more work to do.
claus
parents: 24
diff changeset
   196
    "/
16
db5d473df9f0 *** empty log message ***
claus
parents: 12
diff changeset
   197
    a := #(nil nil nil nil -20 -8 -3 -1 -1 1 16 nil) copy.
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   198
].
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   199
ObjectMemory tenureParameters:a.
25
claus
parents: 24
diff changeset
   200
claus
parents: 24
diff changeset
   201
claus
parents: 24
diff changeset
   202
"/ set the package back to some useful default for programming
claus
parents: 24
diff changeset
   203
"/ this is the package token assigned (by default) to all new methods/classes
claus
parents: 24
diff changeset
   204
"/ (so you can use a browser on package=#private to find all of your new
claus
parents: 24
diff changeset
   205
"/ stuff easily. (the conditional on Project being nonNil is for stripped down
claus
parents: 24
diff changeset
   206
"/ systems without a Project class)
claus
parents: 24
diff changeset
   207
claus
parents: 24
diff changeset
   208
Project notNil ifTrue:[
claus
parents: 24
diff changeset
   209
    Project setDefaultProject.
claus
parents: 24
diff changeset
   210
    Project current packageName:#'private'.
claus
parents: 24
diff changeset
   211
].
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   212
!
123
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   213
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   214
(Smalltalk commandLineArguments includes:'-q') ifFalse:[
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   215
    "/
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   216
    "/ this turns off/on information messages from classes
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   217
    "/ (such as 'D8IMAGE: allocating colors ...'
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   218
    "/
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   219
    "/ Object infoPrinting:false.
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   220
    Object infoPrinting:true.
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   221
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   222
    "/
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   223
    "/ this turns off/on information messages from the VM
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   224
    "/ (such as 'MEM: chitty chatty ...'
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   225
    "/
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   226
    "/ ObjectMemory infoPrinting:false.
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   227
    ObjectMemory infoPrinting:true.
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   228
].
a974136fe017 startup infoPrinting suppressable (-q flag)
Claus Gittinger <cg@exept.de>
parents: 118
diff changeset
   229
!