]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/stencil.scm
Fix variable name in make-path-stencil
[lilypond.git] / scm / stencil.scm
index abd9795f7ebf6873fd211b29dd446888d6e78e69..c4858d39a4b57e459a5991e4c47db2dc8af1eebc 100644 (file)
@@ -464,9 +464,9 @@ coordinates for the previous point in the path."
                   ((eq? head 'curveto) 6)
                   (else 0)))
           (coordinates-raw (take rest arity))
-          (absolute? (if (memq head-raw
+          (is-absolute (if (memq head-raw
                            '(rmoveto m rlineto l rcurveto c)) #f #t))
-          (coordinates (if absolute?
+          (coordinates (if is-absolute
                            coordinates-raw
                            ;; convert relative coordinates to absolute by
                            ;; adding them to previous point values