From 7a028ae871b7b3f49d605367c28c14769ecd7472 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 23:54:53 +0000 Subject: [PATCH] lilypond-1.3.79 --- Documentation/user/glossary.tely | 4 ++-- Documentation/user/properties.itely | 4 ++-- Documentation/user/refman.itely | 11 ++--------- lily/mark-engraver.cc | 2 +- 4 files changed, 7 insertions(+), 14 deletions(-) diff --git a/Documentation/user/glossary.tely b/Documentation/user/glossary.tely index 81e16eb771..96f04614f2 100644 --- a/Documentation/user/glossary.tely +++ b/Documentation/user/glossary.tely @@ -147,10 +147,10 @@ the duration of the long a. is proportionate to that of the main note. \key d \major; \time 4/4; r -{ \property Grace.stemStyle = "" +{ \property Grace.flagStyle = "" \grace g16 } fis8 e16 fis -{ \property Grace.stemStyle = "" +{ \property Grace.flagStyle = "" \grace a16 } g8 fis16 g | a4 \bar "||"; } \notes\relative c'' { diff --git a/Documentation/user/properties.itely b/Documentation/user/properties.itely index bf638acd41..670b0add03 100644 --- a/Documentation/user/properties.itely +++ b/Documentation/user/properties.itely @@ -87,7 +87,7 @@ TODO: @table @samp - @item @code{stemStyle}@indexcode{flagStyle} @propertytype{string} + @item @code{flagStyle}@indexcode{flagStyle} @propertytype{string} By default set to @code{"grace"} meaning that all unbeamed notes with flags are typeset with a slash through the flag. Setting to @code{""} gives standard flags. @@ -120,7 +120,7 @@ c'8 \property Voice.flagStyle = "grace" c'8 directions marked with `@code{^}' or `@code{_}' in the mudela file. @item @code{noAutoBeaming}@indexcode{beamAuto} @propertytype{boolean} - If set to 1 then beams are not generated automatically. + If set to true then beams are not generated automatically. @item @code{beamAutoEnd}@indexcode{beamAutoEnd} @propertytype{?} Specifies when automatically generated beams can end. See diff --git a/Documentation/user/refman.itely b/Documentation/user/refman.itely index 3d98430b1a..c606b6cb5b 100644 --- a/Documentation/user/refman.itely +++ b/Documentation/user/refman.itely @@ -1624,14 +1624,14 @@ example) have a separate time signature within grace notes. While in this score-within-a-score, you can create notes, beams, slurs, etc. Unbeamed eighth notes and shorter by default have a slash through the stem. This behavior can be controlled with the -@code{stemStyle}@indexcode{stemStyle} property. +@code{flagStyle}@indexcode{flagStyle} property. @quotation @mudela[fragment,verbatim] \relative c'' { \grace c8 c4 \grace { [c16 c16] } c4 - \grace { \property Grace.stemStyle = "" c16 } c4 + \grace { \property Grace.flagStyle = "" c16 } c4 } @end mudela @@ -2487,13 +2487,6 @@ Nevertheless, here are some variables you may want to use or change: @item @code{interscoreline}@indexcode{interscoreline} Sets the spacing between the score lines. Defaults to 16 pt. - @item @code{textheight}@indexcode{textheight} - Sets the total height of the music on each page. Only used by - ly2dvi. - - @item @code{interscoreline}@indexcode{interscoreline} - Sets the spacing between the score lines. Defaults to 16 pt. - @item @code{output}@indexcode{output} Specifies an alternate name for the the output @file{s}. A @file{.tex}, @file{.midi} or @file{.ps} extension will be diff --git a/lily/mark-engraver.cc b/lily/mark-engraver.cc index 0f2df8fcdf..b57bafa3e2 100644 --- a/lily/mark-engraver.cc +++ b/lily/mark-engraver.cc @@ -163,7 +163,7 @@ Mark_engraver::do_process_music () */ SCM m = mark_req_l_->get_mus_property ("label"); - if (gh_string_p (m)) + if (!gh_string_p (m)) m = get_property ("rehearsalMark"); ; -- 2.39.5