]> git.donarmstrong.com Git - lilypond.git/commitdiff
* scm/new-markup.scm (brew-new-markup-molecule): arg order
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 19 Jul 2003 09:36:52 +0000 (09:36 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 19 Jul 2003 09:36:52 +0000 (09:36 +0000)
bugfix. Fixes old-style markup compatibility.

* Documentation/user/introduction.itely (Introduction): historical
elucidations

* Documentation/user/introduction.itely (Introduction): rewrite
introduction,
(Music notation and  engraving): about notation. Add flat-picture

ChangeLog
Documentation/user/introduction.itely
scm/new-markup.scm

index 3a7ac46cacb4e91ead5e6597186addb16a33336a..0e7422cf20f81bb7097b2dce10df69d5f7e76519 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2003-07-19  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * scm/new-markup.scm (brew-new-markup-molecule): arg order
+       bugfix. Fixes old-style markup compatibility.
+
        * Documentation/user/introduction.itely (Introduction): historical
        elucidations
 
index 164ab5c0051a83724e9b4f99a28366d9729c2348..ea10699c22425744dbef1ed5da013d886f714f0b 100644 (file)
@@ -40,28 +40,28 @@ elegant.
 
 Common music notation has its roots in the medieval centuries. In this
 time, monks started to write down hints that indicated how their
-sacred music was sung. These hints (neumes), gradually evolved, and at
-some point became the note heads.  Lines were added to the neumes, to
-indicate a reference pitch, which later became the staff.  Over many
-centuries, improvements and extensions were added, while other
-concepts disappeared. For example, the neumes notation did not have an
-explicit notion of rhythm, but it did have @emph{custodes}, symbols at
-the end of the line to indicate the starting pitch of the next line.
-Mensural notation, a notation where each note head takes a fixed
-amount of time, came into being together with the rise of counterpoint
-in the early renaissance.  The graphic language of notation is still
-under development; the innovations of contemporary music require still
-newer and more complex notations. A system of notation encompasses
-such a wide scope of music inherently is complex: there are many
-rules, and for every rule there are exceptional situations where they
-do not apply.
-
-The result is that LilyPond cannot support each and every form of
-notation in existence. Rather, we focus on a specific style and idiom:
-we take inspiration from late-romantic music printed at the beginning
-of the 20th century. Most of the contemporary music after that, and
-most of the music going back to 17th century can be written in this
-system. That is not a fundamental limit, though. There is support for
+sacred music was sung. These hints, neumes, gradually became simpler,
+and at some point became the note heads.  Lines were added to the
+neumes, to indicate a reference pitch, which later became the staff.
+Over many centuries, improvements and extensions were added, while
+other concepts disappeared. For example, the neume notation did not
+have an explicit notion of rhythm, but it did have @emph{custodes},
+symbols at the end of the line to indicate the starting pitch of the
+next line.  Mensural notation, a notation where each note head takes a
+fixed amount of time, came into being together with the rise of
+counterpoint in the early renaissance.  The graphic language of
+notation is still under development; the innovations of contemporary
+music require still newer and more complex notations.
+
+In summary, common music notation encompasses such a wide scope of
+music inherently is complex: there are many rules, and for every rule
+there are exceptional situations where they do not apply.  The result
+is that LilyPond cannot support each and every form of notation in
+existence. Rather, we focus on a specific style and idiom: we take
+inspiration from late-romantic music printed at the beginning of the
+20th century. Most of the contemporary music after that, and most of
+the music going back to 17th century can be written in this
+idiom. That is not a fundamental limit, though. There is support for
 some modern notation like clusters, and older notation, such as white
 mensural and gregorian notation, is being worked on.
 
index f9587aa8a2adeabf74479484d708893216ef6fd6..6d304a7e6370e0f4399eb531e62c2c89e01d786c 100644 (file)
@@ -665,8 +665,8 @@ against SIGNATURE, reporting MAKE-NAME as the user-invoked function.
       ((t (ly:get-grob-property grob 'text))
        (chain (Font_interface::get_property_alist_chain grob)))
     (if (markup? t)
-       (interpret-markup grob  chain t)
-       (Text_item::text_to_molecule grob t chain)
+       (interpret-markup grob chain t)
+       (Text_item::text_to_molecule grob chain t)
        )))
 
 (define-public empty-markup (make-simple-markup ""))