Index: lily/lexer.ll |
diff --git a/lily/lexer.ll b/lily/lexer.ll |
index 9e4ac1838e435557501285b7c41970c6a286e18a..22b3f4e951a8c84d952e2f1f48caa7d3ebc59343 100644 |
--- a/lily/lexer.ll |
+++ b/lily/lexer.ll |
@@ -1139,7 +1139,7 @@ Lily_lexer::eval_scm (SCM readerdata, Input location, char extra_token) |
#endif |
if (Music *m = unsmob<Music> (v)) |
{ |
- if (!unsmob<Input> (m->get_property ("origin"))) |
+ if (!unsmob<Input> (get_property (m, "origin"))) |
m->set_spot (override_input (here_input ())); |
} |
@@ -1168,7 +1168,7 @@ Lily_lexer::eval_scm (SCM readerdata, Input location, char extra_token) |
if (Music *m = unsmob<Music> (sval)) |
{ |
- if (!unsmob<Input> (m->get_property ("origin"))) |
+ if (!unsmob<Input> (get_property (m, "origin"))) |
m->set_spot (override_input (here_input ())); |
} |