]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix variable name in make-path-stencil
authorPaul Morris <paulwmorris@gmail.com>
Tue, 5 May 2015 03:18:15 +0000 (23:18 -0400)
committerJames Lowe <pkx166h@gmail.com>
Sun, 17 May 2015 18:34:15 +0000 (19:34 +0100)
Issue 4370 Patch 1/2

To follow the convention that xxx?
indicates a predicate.

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