The Trunk: Kernel-bf.701.mcz

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

The Trunk: Kernel-bf.701.mcz

commits-2
Bert Freudenberg uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-bf.701.mcz

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

Name: Kernel-bf.701
Author: bf
Time: 3 July 2012, 6:32:34.351 pm
UUID: 25125f3c-0ab4-4421-aef5-71cb84f20fa8
Ancestors: Kernel-eem.700

Fix for Date yesterday - Date today (thanks to Glen Paling for finding this)

=============== Diff against Kernel-eem.700 ===============

Item was changed:
  ----- Method: DateAndTime class>>todayAtNanoSeconds:offset: (in category 'squeak protocol') -----
  todayAtNanoSeconds: nanoSecondsSinceMidnight offset: aDuration
 
  "This is usually only during system startup..."
  self waitForOffsets.
 
  ^ self basicNew
  setJdn: DaysSinceEpoch
  seconds: (nanoSecondsSinceMidnight // 1000000000)
  nano: (nanoSecondsSinceMidnight  \\ 1000000000  )
+ offset: aDuration
- offset: self localOffset
   !