[Pkg] The Trunk: Multilingual-nice.173.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Sep 25 20:27:46 UTC 2013


Nicolas Cellier uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-nice.173.mcz

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

Name: Multilingual-nice.173
Author: nice
Time: 25 September 2013, 10:27:14.086 pm
UUID: e6a9f66f-7caa-4717-991f-429fa7e0aede
Ancestors: Multilingual-tpr.172

Simplify isBreakableAt:in:
Make ^false the default behaviour
Don't bother with cr lf space, since they are handled in CharacterScanner stopConditions anyway (at least they should).

=============== Diff against Multilingual-tpr.172 ===============

Item was changed:
  ----- Method: EncodedCharSet class>>isBreakableAt:in: (in category 'accessing - displaying') -----
  isBreakableAt: index in: text
  
+ 	^false!
- 	self subclassResponsibility.
- !

Item was changed:
  ----- Method: LanguageEnvironment class>>isBreakableAt:in: (in category 'rendering support') -----
  isBreakableAt: index in: text
- 
- 	| char |
- 	char := text at: index.
- 	char = Character space ifTrue: [^ true].
- 	char = Character cr ifTrue: [^ true].
  	^ false.
  !

Item was removed:
- ----- Method: Latin1 class>>isBreakableAt:in: (in category 'accessing - displaying') -----
- isBreakableAt: index in: text
- 
- 	| char |
- 	char := text at: index.
- 	char = Character space ifTrue: [^ true].
- 	char = Character cr ifTrue: [^ true].
- 	char = Character lf ifTrue: [^ true].
- 	^ false.
- !

Item was removed:
- ----- Method: Latin1Environment class>>isBreakableAt:in: (in category 'rendering support') -----
- isBreakableAt: index in: text
- 
- 	| char |
- 	char := text at: index.
- 	char = Character space ifTrue: [^ true].
- 	char = Character cr ifTrue: [^ true].
- 	char = Character lf ifTrue: [^ true].
- 	^ false.
- !

Item was removed:
- ----- Method: Latin2Environment class>>isBreakableAt:in: (in category 'rendering support') -----
- isBreakableAt: index in: text
- 
- 	| char |
- 	char := text at: index.
- 	char = Character space ifTrue: [^ true].
- 	char = Character cr ifTrue: [^ true].
- 	char = Character lf ifTrue: [^ true].
- 	^ false.
- !

Item was removed:
- ----- Method: Unicode class>>isBreakableAt:in: (in category 'accessing - displaying') -----
- isBreakableAt: index in: text
- 
- 	self subclassResponsibility.
- !



More information about the Packages mailing list