From 7e544ef4f93644a6a676c39a553e5bb437657bba Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Sat, 1 Aug 2009 15:10:12 -0700 Subject: [PATCH] SVG backend: do not use style attribute for dashed-line --- scm/output-svg.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scm/output-svg.scm b/scm/output-svg.scm index e91b5181b5..bc6568a4c7 100644 --- a/scm/output-svg.scm +++ b/scm/output-svg.scm @@ -325,7 +325,8 @@ `(r . ,radius))) (define (dashed-line thick on off dx dy phase) - (draw-line thick 0 0 dx dy `(style . ,(format "stroke-dasharray:~a,~a;" on off)))) + (draw-line thick 0 0 dx dy + `(stroke-dasharray . ,(format "~a,~a" on off)))) (define (draw-line thick x1 y1 x2 y2 . alist) (apply entity 'line "" -- 2.39.2