aboutsummaryrefslogtreecommitdiff
path: root/pnm/read.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-08-08 01:07:32 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-08-08 01:07:32 +0900
commiteea3a41609ab2ac72d19166812e01213de3b0bc3 (patch)
treeeeca387f7e318fa866798704146d51270451db7f /pnm/read.scm
parentf771fb288ff62d761fcf43e0815a9b2a482db7b4 (diff)
Rename procedures from image-pixel-ref/set! to image-ref/set!
Diffstat (limited to 'pnm/read.scm')
-rw-r--r--pnm/read.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/pnm/read.scm b/pnm/read.scm
index 42ded91..a2e0555 100644
--- a/pnm/read.scm
+++ b/pnm/read.scm
@@ -71,7 +71,7 @@
(pbm-image (make-pbm-image width height)))
(read-text-raster width height #f in
(lambda (x y v)
- (image-pixel-set! pbm-image x y (= v 1)))
+ (image-set! pbm-image x y (= v 1)))
unexpected-eof-error
unexpected-character-error)
pbm-image))