diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2006-01-18 13:46:55 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2006-01-18 13:46:55 +0000 |
commit | b5748a7cd4840800419171e31b0153ada2d5a88c (patch) | |
tree | 22a932b8206df9c207bfcdecb62acd92c979385b | |
parent | 3b7eb398f096a9291de36d7f8716c3cf43614a7f (diff) |
remove duplicate tag.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | ly/music-functions-init.ly | 13 |
2 files changed, 2 insertions, 13 deletions
@@ -1,5 +1,7 @@ 2006-01-18 Han-Wen Nienhuys <hanwen@xs4all.nl> + * ly/music-functions-init.ly: remove duplicate tag. + * lily/include/*.hh: GCC 4.1 fixes. 006-01-16 Erlend Aasland <erlenda@gmail.com> diff --git a/ly/music-functions-init.ly b/ly/music-functions-init.ly index 90a6d8edb7..3ace0c203b 100644 --- a/ly/music-functions-init.ly +++ b/ly/music-functions-init.ly @@ -19,19 +19,6 @@ tweak = #(def-music-function (parser location sym val arg) (ly:music-property arg 'tweaks))) arg) - - -tag = #(def-music-function (parser location tag arg) - (symbol? ly:music?) - - "Add @var{tag} to the @code{tags} property of @var{arg}." - - (set! - (ly:music-property arg 'tags) - (cons tag - (ly:music-property arg 'tags))) - arg) - tag = #(def-music-function (parser location tag arg) (symbol? ly:music?) |