[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Problems setting circle-padding
From: |
Neil Puttock |
Subject: |
Re: Problems setting circle-padding |
Date: |
Mon, 9 Jun 2008 23:53:06 +0100 |
2008/6/9 Steven Weber <address@hidden>:
> Any clue what's going on here, or why the exact string Lilypond claims to be
> using internally doesn't work?
You're missing a quote which stops guile from trying to evaluate it as
a variable (it's a symbol):
#(define-markup-command (myCircle layout props name) (string?)
"Print the name inside a circle. Syntax: \\myCircle #\"note\""
(interpret-markup layout props
(markup #:line (#:override '(circle-padding . 0.5) (#:circle
"Hi")))))
Regards,
Neil