From ff328b38f2d2cceac722deecbe7cfa53123b0ff2 Mon Sep 17 00:00:00 2001 From: Tom Beckmann Date: Tue, 5 Nov 2024 09:47:56 +0100 Subject: [PATCH] ensure that we do not enter interactive mode as our encoder is modded to omit important info in interactive mode --- .../class/formatString.class.noPattern.notifying.with..st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/PoppyPrint-Core.package/PPFormatter.class/class/formatString.class.noPattern.notifying.with..st b/packages/PoppyPrint-Core.package/PPFormatter.class/class/formatString.class.noPattern.notifying.with..st index 118b8d1..6be7afa 100644 --- a/packages/PoppyPrint-Core.package/PPFormatter.class/class/formatString.class.noPattern.notifying.with..st +++ b/packages/PoppyPrint-Core.package/PPFormatter.class/class/formatString.class.noPattern.notifying.with..st @@ -12,7 +12,7 @@ formatString: aString class: aClass noPattern: aBoolean notifying: anObject with parse: (aString string codeWithEmptyLineMarkersNoPattern: aBoolean) class: aClass noPattern: aBoolean - notifying: anObject + notifying: nil ifFail: nil. (methodNode hasPragma: #ppIgnore) ifTrue: [^ aString]. @@ -21,4 +21,4 @@ formatString: aString class: aClass noPattern: aBoolean notifying: anObject with initForNode: methodNode; config: aPPFormatterConfig. methodNode accept: formatter. - ^ aBoolean ifTrue: [self stripMethodPattern: formatter contents] ifFalse: [formatter contents] \ No newline at end of file + ^ aBoolean ifTrue: [self stripMethodPattern: formatter contents] ifFalse: [formatter contents]