Re: [frogs] my contribution: barCheckNumber to endSpanners |
[ Thread Index |
Date Index
| More lilynet.net/frogs Archives
]
> The purpose of @var is marking variables (but not names of predefined
> variables), so let's use it as suggested by the C. Guide. If we want
> variables in a fixed-width font though, it's certainly possible to tweak
> HTML output.
OK, here is my new patch.
Frédéric
diff --git a/ly/music-functions-init.ly b/ly/music-functions-init.ly
index a112b67..3bbddb8 100644
--- a/ly/music-functions-init.ly
+++ b/ly/music-functions-init.ly
@@ -126,6 +126,7 @@ bar =
barNumberCheck =
#(define-music-function (parser location n) (integer?)
+ (_i "Print a warning if the current bar number is not @var{n}.")
(make-music 'ApplyContext
'origin location
'procedure
@@ -139,30 +140,29 @@ barNumberCheck =
bendAfter =
#(define-music-function (parser location delta) (real?)
-
+ (_i "Create a fall or doit of pitch interval @var{delta}.")
(make-music 'BendAfterEvent
'delta-step delta))
%% why a function?
breathe =
#(define-music-function (parser location) ()
+ (_i "Insert a breath mark.")
(make-music 'EventChord
'origin location
'elements (list (make-music 'BreathingEvent))))
clef =
-#(define-music-function (parser location type)
- (string?)
- (_i "Set the current clef.")
-
+#(define-music-function (parser location type) (string?)
+ (_i "Set the current clef.")
(make-clef-set type))
cueDuring =
#(define-music-function
- (parser location what dir main-music)
- (string? ly:dir? ly:music?)
+ (parser location what dir main-music) (string? ly:dir? ly:music?)
+ (_i "Create a polyphonic music with @var{what} and @var{main-music}, @var{dir} indicating if @var{what} is first or second voice.")
(make-music 'QuoteMusic
'element main-music
'quoted-context-type 'Voice
@@ -173,12 +173,14 @@ cueDuring =
displayLilyMusic =
#(define-music-function (parser location music) (ly:music?)
+ (_i "Display a music expression in LilyPond notation.")
(newline)
(display-lily-music music parser)
music)
displayMusic =
#(define-music-function (parser location music) (ly:music?)
+ (_i "Display the internal representation of a music expression.")
(newline)
(display-scheme-music music)
music)
@@ -186,6 +188,7 @@ displayMusic =
endSpanners =
#(define-music-function (parser location music) (ly:music?)
+ (_i "Terminate the next spanner prematurely after exactly one note without the need of a specific end spanner.")
(if (eq? (ly:music-property music 'name) 'EventChord)
(let*
((elts (ly:music-property music 'elements))