From 09c867f74788944e7e51d34b1c132c7f348dcd4f Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 28 May 2020 09:13:51 -0700 Subject: [PATCH] images.pbm: use not. --- extra/images/pbm/pbm.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/images/pbm/pbm.factor b/extra/images/pbm/pbm.factor index f0462df554..d953e3ff1a 100644 --- a/extra/images/pbm/pbm.factor +++ b/extra/images/pbm/pbm.factor @@ -48,7 +48,7 @@ SINGLETON: pbm-image bitmap width [ width 8 align 255 pad-tail 8 [ - [ 255 = [ f ] [ t ] if ] { } map-as + [ 255 = not ] { } map-as >bit-array reverse bit-array>integer 1array >byte-array write ] each