From 51aecfed170349c19e10923c9ce18773ad1786c3 Mon Sep 17 00:00:00 2001 From: Paul Morris Date: Mon, 4 May 2015 23:18:15 -0400 Subject: [PATCH] Fix variable name in make-path-stencil Issue 4370 Patch 1/2 To follow the convention that xxx? indicates a predicate. --- scm/stencil.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5