shithub: fnt

Download patch

ref: fc9a0a02fc98390690f37d7578b96b05aedba611
parent: 1e9612c4e55535ffc097e5d44c1b5509ee894e4c
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Tue May 28 05:43:19 EDT 2024

remove needless noise in autoparse

--- a/otf.rkt
+++ b/otf.rkt
@@ -80,8 +80,8 @@
   (λ (b [index 0])
     (letrec ([f (λ (index shift)
                   (let* ([x (- shift 8)] [next (if (positive? x) (~a " | " (f (add1 index) x)) "")])
-                    (~a "(" ctype ")" b "[" index "]<<" x next)))])
-      (~a "(" (f index bits) ")"))))
+                    (~a (if (> x 24) (~a "(" ctype ")") "") b "[" index "]" (if (positive? x) (~a "<<" x) "") next)))])
+      (~a (if (<= bits 32) (~a "(" ctype ")") "") "(" (f index bits) ")"))))
 
 (define-syntax mktype
   (syntax-rules ()