[BUG][FIX] Character>>sameAs: missing in 3.8

Ragnar Hojland Espinosa ragnar.hojland at linalco.com
Tue Aug 2 16:19:45 UTC 2005


It is used by Rexeg. Try evaluating the following for a MNU.

'a' matchesRegexIgnoringCase: 'a'

which I guess can be fixed in the Regex package, or in Character
(since there's already a String>>sameAs:)

Character>>sameAs: aChar
sameAs: aCharacter 
	"Answer whether the receiver is equal to aCharacter, ignoring case"
	^ (self asLowercase = aCharacter asLowercase)	
-- 
Ragnar Hojland - Project Manager
Linalco "Specialists in Linux and Free Software"
http://www.linalco.com  Tel: +34-91-4561700



More information about the Squeak-dev mailing list