diff -r 666372dbe307 -r a949c4fe44df compiler/extensions.st --- a/compiler/extensions.st Wed Aug 26 23:34:48 2015 +0100 +++ b/compiler/extensions.st Sat Aug 29 07:56:14 2015 +0100 @@ -407,13 +407,15 @@ !PPParser methodsFor:'*petitcompiler'! compile: options + | configuration | + self assert: (options isKindOf: PPCCompilationOptions). - - ^ PPCConfiguration default - options: options; - compile: self - "Modified: / 24-08-2015 / 23:39:40 / Jan Vrany " + configuration := PPCConfiguration default. + configuration context options: options. + ^ configuration compile: self + + "Modified: / 28-08-2015 / 14:25:18 / Jan Vrany " ! ! !PPParser methodsFor:'*petitcompiler'!