]> git.donarmstrong.com Git - lilypond.git/commitdiff
Adapt documentation to \bendAfter and \rightHandFinger being event functions.
authorDavid Kastrup <dak@gnu.org>
Sun, 22 Apr 2012 17:30:27 +0000 (19:30 +0200)
committerDavid Kastrup <dak@gnu.org>
Mon, 23 Apr 2012 16:51:51 +0000 (18:51 +0200)
Documentation/notation/expressive.itely
Documentation/notation/fretted-strings.itely

index 0d86f3e639dd7b1344726ce61b11e680dd37e088..d38175ce4858544b5b34f441de1c4ab1a93ef64e 100644 (file)
@@ -989,18 +989,14 @@ indicates the pitch interval that the fall or doit will extend
 @emph{beyond} the main note.
 
 @lilypond[verbatim,quote,relative=2]
-c2-\bendAfter #+4
-c2-\bendAfter #-4
-c2-\bendAfter #+6.5
-c2-\bendAfter #-6.5
-c2-\bendAfter #+8
-c2-\bendAfter #-8
+c2\bendAfter #+4
+c2\bendAfter #-4
+c2\bendAfter #+6.5
+c2\bendAfter #-6.5
+c2\bendAfter #+8
+c2\bendAfter #-8
 @end lilypond
 
-The dash @code{-} immediately preceding the @code{\bendAfter}
-command is @emph{required} when writing falls and doits.
-
-
 @snippets
 
 @lilypondfile[verbatim,quote,texidoc,doctitle]
index 31a30430db424e1a6964f92e7f646ba8ba7080b5..31bbe5ca9711a797cca28d77bcd5164c46cbf97f 100644 (file)
@@ -1583,24 +1583,24 @@ with non-monotonic tunings.
 Right-hand fingerings @var{p-i-m-a} must be entered using
 @code{\rightHandFinger} followed by a number.
 
-@warning{There @strong{must} be a hyphen before
-@code{@bs{}rightHandFinger} and a space before the closing @code{>}.}
+@warning{If the number is entered in Scheme notation, remember to append
+a space before following it with a closing @code{>} or similar.}
 
 @lilypond[quote,verbatim,relative=0]
 \clef "treble_8"
-c4-\rightHandFinger #1
-e-\rightHandFinger #2
-g-\rightHandFinger #3
-c-\rightHandFinger #4
-<c,-\rightHandFinger #1 e-\rightHandFinger #2
- g-\rightHandFinger #3 c-\rightHandFinger #4 >1
+c4\rightHandFinger #1
+e\rightHandFinger #2
+g\rightHandFinger #3
+c\rightHandFinger #4
+<c,\rightHandFinger #1 e\rightHandFinger #2
+ g\rightHandFinger #3 c\rightHandFinger #4 >1
 @end lilypond
 
 For convenience, you can abbreviate @code{\rightHandFinger} to something
 short, for example @code{RH},
 
 @example
-#(define RH rightHandFinger)
+RH=#rightHandFinger
 @end example