diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-02-09 14:12:27 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-02-09 14:12:27 +0100 |
commit | 196b59fd4487acdf619a17e378da1d6e540fe527 (patch) | |
tree | ac92e5bd5922396381adb4b5e92ccbeb33fc1cee | |
parent | b3ea95906ce328555b8e3ed19ad68b56c9af7fdf (diff) |
pict: pict-attr: Fix indentation.
* pict.scm (pict-attr): Fix indentation.
-rw-r--r-- | pict.scm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -742,8 +742,8 @@ full transparency) and 1 (for full opacity)." of the SVG of PICT or #F." (and=> ((sxpath `(,@path @ ,attr *any*)) (pict-sxml pict)) - (lambda (m) (and (pair? m) - (car m))))) + (lambda (m) + (and (pair? m) (car m))))) (define (pict-height pict) "Return the numeric height of PICT." |