From: Paul Morris Date: Tue, 5 May 2015 03:18:15 +0000 (-0400) Subject: Fix variable name in make-path-stencil X-Git-Tag: release/2.19.21-1~25 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=51aecfed170349c19e10923c9ce18773ad1786c3;p=lilypond.git Fix variable name in make-path-stencil Issue 4370 Patch 1/2 To follow the convention that xxx? indicates a predicate. --- diff --git a/scm/stencil.scm b/scm/stencil.scm index abd9795f7e..c4858d39a4 100644 --- a/scm/stencil.scm +++ b/scm/stencil.scm @@ -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