From: Han-Wen Nienhuys Date: Wed, 12 Jun 2002 19:30:53 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/1.5.61~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=aa2cb8d0fc36fdbc020442c635303b98be2712e6;p=lilypond.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index a8e222e833..c3df049835 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-12 Mats Bengtsson + + * scm/grob-description.scm: Add side-position-interface to TextSpanner + + * scm/grob-property-description.scm: Document the trill line type. + 2002-06-12 Jan Nieuwenhuizen * stepmake/stepmake/generic-vars.make: diff --git a/make/lilypond.redhat.spec.in b/make/lilypond.redhat.spec.in index c6aa8b349d..10858db7a5 100644 --- a/make/lilypond.redhat.spec.in +++ b/make/lilypond.redhat.spec.in @@ -12,11 +12,8 @@ Summary: Create and print music notation URL: http://www.lilypond.org/ BuildRoot: /tmp/lilypond-install -# add lots of Buildreq: flex, bison, tetex, tetex-devel, tetex-latex, texinfo -Prereq: tetex tetex-latex gcc-c++ python - -# -Buildreq: t1utils bison flex pktrace texinfo +Buildrequires: t1utils bison flex pktrace texinfo +Requires: tetex tetex-latex gcc-c++ python %description LilyPond lets you create music notation. It produces diff --git a/scm/context-description.scm b/scm/context-description.scm index d77ffc39c1..f0ff06f270 100644 --- a/scm/context-description.scm +++ b/scm/context-description.scm @@ -4,13 +4,7 @@ (define context-description-alist '( (Grace . " - The context for handling grace notes. It used to be instantiated - automatically when you use @code{\grace}. Basically, it is an - `embedded' miniature of the Score context. Since this context - needs special interaction with the rest of LilyPond, you should - not explicitly instantiate it. - - DEPRECATED. + DEPRECATED; this is a 1.4 construct. ") (LyricsVoice . " Corresponds to a voice with lyrics. Handles the printing of a @@ -86,7 +80,7 @@ @code{\paper} block) is processed. ") - (TabStaff . "Context for generating tablature.") + (TabStaff . "Context for generating tablature. [DOCME]") ) ) diff --git a/scm/grob-description.scm b/scm/grob-description.scm index b67dc07021..3c1d87a7f4 100644 --- a/scm/grob-description.scm +++ b/scm/grob-description.scm @@ -930,7 +930,7 @@ (width-correct . -1) (direction . 1) - (meta . ((interfaces . (text-spanner-interface font-interface)))) + (meta . ((interfaces . (text-spanner-interface side-position-interface font-interface)))) )) (Tie diff --git a/scm/grob-property-description.scm b/scm/grob-property-description.scm index 069c9dd1ff..c873757540 100644 --- a/scm/grob-property-description.scm +++ b/scm/grob-property-description.scm @@ -404,7 +404,12 @@ print only if there is no beam associated with this tuplet bracket.") (grob-property-description 'number-visibility boolean-or-symbol? " Like @code{bracket-visibility}, but for the number.") (grob-property-description 'tie ly-grob? "") -(grob-property-description 'type symbol? "one of: line, dashed-line or dotted-line.") +(grob-property-description 'type symbol? " + +one of: line, dashed-line, trill or dotted-line. + +[FIXME: type is too generic for this doc, move doco to intefrace] +") (grob-property-description 'visibility-lambda procedure? "a function that takes the break direction and returns a cons of booleans containing (TRANSPARENT . EMPTY).") (grob-property-description 'when moment? "when does this column happen?.") (grob-property-description 'word-space number? "elongate left by this much (FIXME: cumbersome semantics).")