[Vm-dev] Need help to make a small RomePlugin update

David T. Lewis lewis at mail.msen.com
Tue Dec 30 23:21:03 UTC 2014


I need to make a small update to RomePlugin to address a bug that I found
while incorporating Alex Franchuk's Plan9 changes. The repository for the
plugin is at http://www.squeaksource.com/Rome, but I don't have write access.

Bert, could you please apply the attached change, or give me developer access
to the Rome repository?

The change is in method category '*Rome-Plugin' in class TSendNode, and ensures
that the selector name is a symbol rather than string.

TSendNode>>replaceCairoCalls
	((selector beginsWith: 'cairo') or: [selector beginsWith: 'pango']) ifTrue: [
		selector := (RomePlugin camelToUnderscore: selector) asSymbol]

Thanks!

Dave

-------------- next part --------------
'From Squeak4.5 of 31 March 2014 [latest update: #13718] on 30 December 2014 at 6:02:44 pm'!

!TSendNode methodsFor: '*Rome-Plugin' stamp: 'dtl 12/28/2014 16:48'!
replaceCairoCalls
	((selector beginsWith: 'cairo') or: [selector beginsWith: 'pango']) ifTrue: [
		selector := (RomePlugin camelToUnderscore: selector) asSymbol]! !


More information about the Vm-dev mailing list