Aug. 3, 2010
8:38 p.m.
Hi guys I'm working on merging the changes 1298 about the guess of default end of line. And I would like to know on mac os x (compared to Os9) what is the default character of end of line. I thought it was CR since the previous code was ((OSPlatform osVersion) beginsWith: 'darwin') ifTrue: [^ self defaultToCR] ifFalse: [^ self defaultToLF]] but carlo wrote Smalltalk isMacOS9 ifTrue: [^ self defaultToCR] ifFalse: [^ self defaultToLF]]. and I have some doubts because 'darwin' should be mac os x Stef