From: Han-Wen Nienhuys Date: Wed, 5 Mar 2003 18:30:46 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/1.7.14~1 X-Git-Url: https://git.donarmstrong.com/?p=lilypond.git;a=commitdiff_plain;h=faaa3855a18cb8c797c36c419cc3fd104397f8e9 *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 8e532663a0..1d08c1907e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -109,6 +109,9 @@ 2003-02-23 Han-Wen Nienhuys + * Documentation/user/refman.itely (Tuning groups of objects): + remove documentation for \turnOff. + * lily/percent-repeat-engraver.cc (try_music): add correct processing moments for double-measure percents as well. diff --git a/Documentation/user/tutorial.itely b/Documentation/user/tutorial.itely index 59f147a1af..24048a99bb 100644 --- a/Documentation/user/tutorial.itely +++ b/Documentation/user/tutorial.itely @@ -2150,7 +2150,7 @@ a collision with the slur. This could be achieved with works. We insert an empty text between the 5 and the note. The empty text pushes the fingering instruction away: @example - a-)^" "^\markup { \finger "5" } + a-)^" "^\markup @{ \finger "5" @} @end example A fingering instruction, which would be entered as @code{^5}, is put diff --git a/aclocal.m4 b/aclocal.m4 index 7da2945085..6acd560cef 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,6 +1,6 @@ dnl aclocal.m4 -*-shell-script-*- dnl WARNING WARNING WARNING -dnl do not edit! this is aclocal.m4, generated from /home/hanwen/usr/src/lilypond/stepmake/aclocal.m4 +dnl do not edit! this is aclocal.m4, generated from /users/hanwen/usr/src/lilypond/stepmake/aclocal.m4 dnl aclocal.m4 -*-shell-script-*- dnl StepMake subroutines for configure.in diff --git a/input/regression/molecule-hacking.ly b/input/regression/molecule-hacking.ly index 9eb64daeb2..ec80a695aa 100644 --- a/input/regression/molecule-hacking.ly +++ b/input/regression/molecule-hacking.ly @@ -1,4 +1,4 @@ -\version "1.7.6" +\version "1.7.13" \header { texidoc=" You can write molecule callbacks in Scheme, thus providing custom glyphs for notation elements. A simple example is @@ -34,19 +34,19 @@ GROB. The dimensions of the molecule is not affected. (subject (callback grob)) ; remember old size - (subject-dim-x (ly:get-molecule-extent subject 0)) - (subject-dim-y (ly:get-molecule-extent subject 1)) + (subject-dim-x (ly:molecule-get-extent subject 0)) + (subject-dim-y (ly:molecule-get-extent subject 1)) ) ; add parens (set! subject - (ly:combine-molecule-at-edge - (ly:combine-molecule-at-edge subject 0 1 pclose 0.2) + (ly:molecule-combine-at-edge + (ly:molecule-combine-at-edge subject 0 1 pclose 0.2) 0 -1 popen 0.2)) ; revert old size. - (ly:set-molecule-extent! subject 0 subject-dim-x) - (ly:set-molecule-extent! subject 1 subject-dim-y) + (ly:molecule-set-extent! subject 0 subject-dim-x) + (ly:molecule-set-extent! subject 1 subject-dim-y) subject ) ) diff --git a/lily/percent-repeat-engraver.cc b/lily/percent-repeat-engraver.cc index 9cf39db4a9..63ff323b14 100644 --- a/lily/percent-repeat-engraver.cc +++ b/lily/percent-repeat-engraver.cc @@ -150,7 +150,6 @@ Percent_repeat_engraver::process_music () announce_grob(perc_, repeat_->self_scm()); } else if (repeat_sign_type_ == DOUBLE_MEASURE) - { double_percent_ = new Item (get_property ("DoublePercentRepeat")); announce_grob(double_percent_, repeat_->self_scm()); diff --git a/ly/property-init.ly b/ly/property-init.ly index 0d6e6a2552..e472e79c99 100644 --- a/ly/property-init.ly +++ b/ly/property-init.ly @@ -230,6 +230,8 @@ forgetAccidentals = { % To remove a Volta bracket or some other graphical object, % set it to turnOff. Example: \property Staff.VoltaBracket = \turnOff +%% +%% DO NOT USE THIS. IT CAN LEAD TO CRASHES. turnOff = #'() % For drawing vertical chord brackets with \arpeggio