The Trunk: System-nice.288.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: System-nice.288.mcz

commits-2
Nicolas Cellier uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-nice.288.mcz

==================== Summary ====================

Name: System-nice.288
Author: nice
Time: 7 March 2010, 2:34:46.099 am
UUID: 722da6ba-695f-1546-998b-240594b79865
Ancestors: System-nice.287

Oops revert Smalltalk vmPath...
The browser did not signal to me this method was already defined ...
And it was different (had a pathDelimiter ending)

=============== Diff against System-nice.287 ===============

Item was changed:
  ----- Method: SmalltalkImage>>vmPath (in category 'command line') -----
  vmPath
+ "Answer the path for the directory containing the Smalltalk virtual machine. Return the empty string if this primitive is not implemented."
+ "Smalltalk vmPath"
+
+ ^ (FilePath pathName: (self primVmPath) isEncoded: true) asSqueakPathName.
+ !
- "Answer the absolute path of the executable vm from which this image were launched."
-
- "Smalltalk commandLine vmPath"
-
- ^self getSystemAttribute: 0!