compiler/PPCScanner.st
changeset 507 c5773c25eedc
parent 502 1e45d3c96ec5
child 516 3b81c9e53352
--- a/compiler/PPCScanner.st	Mon Jul 27 16:28:48 2015 +0100
+++ b/compiler/PPCScanner.st	Tue Jul 28 07:16:10 2015 +0100
@@ -58,7 +58,7 @@
 !PPCScanner methodsFor:'scanning'!
 
 consumeConditionally: character
-    ^ (stream peek == character) ifTrue: [ stream next. true ] ifFalse: [ false ]
+    (stream peek == character) ifTrue: [ stream next. ^ true ] ifFalse: [ ^ false ]
 !
 
 next