[squeak-dev] The Inbox: ST80-ct.256.mcz

K K Subbu kksubbu.ml at gmail.com
Fri Jun 12 16:45:58 UTC 2020


On 12/06/20 1:47 pm, commits at source.squeak.org wrote:
>    	aSymbol == #appendEntry ifTrue:
>    			[^ controller doOccluded: [controller appendEntry]].
> + 	aSymbol == #appendEntryLater ifTrue:
> + 			[^ controller doOccluded: [controller appendEntry]].
How about
    (aSymbol == #appendEntry) | (aSymbol == #appendEntryLater)
	ifTrue: [^ controller doOccluded: [controller appendEntry]].

Regards .. Subbu


More information about the Squeak-dev mailing list