summaryrefslogtreecommitdiff
path: root/lily/stencil-expression.cc
diff options
context:
space:
mode:
authorGraham Percival <graham@percival-music.ca>2011-08-01 20:19:33 +0100
committerGraham Percival <graham@percival-music.ca>2011-08-01 20:19:33 +0100
commit4a401ca1c60f428daa242dbdd102fdb3f327ebfb (patch)
tree5eeb3dd5db897fb88a957a57599999935f208434 /lily/stencil-expression.cc
parent1c72394c0ae30ba289f869059ec2532eac8d4015 (diff)
Grand fixcc.py run on all .hh .cc files.
Apologies for the inconvenience in patch handling, but getting this done at once will cause less long-term problems than trying to do this piecemeal. Note for future git historians: this patch was created by running scripts/auxiliar/fixcc.py \ $(find flower lily -name '*cc' -o -name '*hh' | grep -v /out) with astyle 2.02 installed. No manual changes were made.
Diffstat (limited to 'lily/stencil-expression.cc')
-rw-r--r--lily/stencil-expression.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lily/stencil-expression.cc b/lily/stencil-expression.cc
index d5926c6205..27a732d523 100644
--- a/lily/stencil-expression.cc
+++ b/lily/stencil-expression.cc
@@ -25,16 +25,16 @@ void register_stencil_head (SCM symbol)
{
if (!heads)
heads = scm_permanent_object (scm_cons (SCM_EOL, SCM_EOL));
-
+
scm_set_object_property_x (symbol, ly_symbol2scm ("stencil-head?"), SCM_BOOL_T);
- scm_set_cdr_x (heads, scm_cons (symbol, scm_cdr (heads)));
+ scm_set_cdr_x (heads, scm_cons (symbol, scm_cdr (heads)));
}
bool
is_stencil_head (SCM symbol)
{
return scm_object_property (symbol, ly_symbol2scm ("stencil-head?"))
- == SCM_BOOL_T;
+ == SCM_BOOL_T;
}
SCM