]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/ly-syntax-constructors.scm
Fix incorrect comment on markup-command-keyword
[lilypond.git] / scm / ly-syntax-constructors.scm
index 3ee82f09f6e6a9f1053e5be695e030a84d640176..3150c879293be0604f5b8417d0da7d6f792b9456 100644 (file)
@@ -1,8 +1,19 @@
-;;;; ly-syntax-constructors.scm -- Defines functions for syntax expressions
+;;;; This file is part of LilyPond, the GNU music typesetter.
 ;;;;
-;;;;  source file of the GNU LilyPond music typesetter
-;;;; 
-;;;; (c) 2006 Erik Sandberg <mandolaerik@gmail.com>
+;;;; Copyright (C) 2006--2010 Erik Sandberg <mandolaerik@gmail.com>
+;;;;
+;;;; LilyPond is free software: you can redistribute it and/or modify
+;;;; it under the terms of the GNU General Public License as published by
+;;;; the Free Software Foundation, either version 3 of the License, or
+;;;; (at your option) any later version.
+;;;;
+;;;; LilyPond is distributed in the hope that it will be useful,
+;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;;; GNU General Public License for more details.
+;;;;
+;;;; You should have received a copy of the GNU General Public License
+;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 
 ;; TODO: use separate module for syntax
 ;; constructors. Also create wrapper around the constructor?
              'origin location))
 
 (define-ly-syntax (repetition-chord parser location previous-chord repetition-function duration articulations)
-  (let ((new-chord (repetition-function previous-chord duration articulations)))
-    (set! (ly:music-property new-chord 'origin) location)
-    new-chord))
+  (make-music 'RepeatedChord
+             'original-chord previous-chord
+             'element (repetition-function previous-chord location duration articulations)
+             'origin location))
 
 (define-ly-syntax-simple (context-specification type id mus ops create-new)
   (let* ((type-sym (if (symbol? type) type (string->symbol type)))