diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2005-05-31 18:50:04 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2005-05-31 18:50:04 +0000 |
commit | b7f91a698780966af5f1c3f2ea9aad4630fb480f (patch) | |
tree | 286b08169b7deab406cbb65d2be4f7de53df7101 /lily/stencil-interpret.cc | |
parent | 998c822a2adead0ad7c0886c5e8d647e646a1926 (diff) |
* lily/lily-parser-scheme.cc (LY_DEFINE): unprotect paper
too. Plugs memory leak.
* lily/score.cc (Score): unprotect copy of Output_def. Plugs
memory leak.
Diffstat (limited to 'lily/stencil-interpret.cc')
-rw-r--r-- | lily/stencil-interpret.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lily/stencil-interpret.cc b/lily/stencil-interpret.cc index 00441eeebc..f88cdc4c7f 100644 --- a/lily/stencil-interpret.cc +++ b/lily/stencil-interpret.cc @@ -29,6 +29,7 @@ interpret_stencil_expression (SCM expr, } else if (head == ly_symbol2scm ("combine-stencil")) { + for (SCM x = scm_cdr (expr); scm_is_pair (x); x = scm_cdr (x)) interpret_stencil_expression (scm_car (x), func, func_arg, o); return; |