#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 12 Oct 2016 16:05:24 +0200
changeset 4013 32a83d2dc88d
parent 4012 55763135379f
child 4014 b7fae905c8f4
#DOCUMENTATION by cg class: ParserFlags changed: #stcModulePath:
ParserFlags.st
--- a/ParserFlags.st	Wed Oct 12 15:59:16 2016 +0200
+++ b/ParserFlags.st	Wed Oct 12 16:05:24 2016 +0200
@@ -510,6 +510,10 @@
 !
 
 stcModulePath:something
+    "set the path to the directory, where temporary modules are created.
+     Obsolete now, as this should not be set from the outside,
+     but instead rely totally on the userPreferences."
+
     STCModulePath := something.
 !
 
@@ -2061,8 +2065,12 @@
     ^ stcModulePath
 !
 
-stcModulePath:something
-    stcModulePath := something.
+stcModulePath:aPath
+    "set the path to the directory (for an individual compilation context).
+     Obsolete now, as this should not be set from the outside,
+     but instead rely totally on the userPreferences."
+
+    stcModulePath := aPath.
 !
 
 stcPath