From: Han-Wen Nienhuys Date: Tue, 26 Aug 2003 17:05:57 +0000 (+0000) Subject: (year): typos. X-Git-Tag: release/1.8.2~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fd09ab793298f3d1b0bf784181cd246d3739c46c;p=lilypond.git (year): typos. --- diff --git a/ChangeLog b/ChangeLog index 9cd70c2cbf..2de0d9aac9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,19 @@ +2003-08-26 Han-Wen Nienhuys + + * Documentation/bibliography/engraving.bib (year): typos. + +2003-08-25 Han-Wen Nienhuys + + * Documentation/user/lilypond-book.itely (Invoking lilypond-book): + add note about -Ppdf + 2003-08-23 Han-Wen Nienhuys + * lily/slur.cc (get_attachment): bugfix: don't crash on non-cons + attachment property. + + * Documentation/user/refman.itely: url fixes. + * po/sv.po: new po 2003-08-21 Han-Wen Nienhuys diff --git a/Documentation/bibliography/engraving.bib b/Documentation/bibliography/engraving.bib index a2a25151bf..5dfb713820 100644 --- a/Documentation/bibliography/engraving.bib +++ b/Documentation/bibliography/engraving.bib @@ -212,7 +212,7 @@ year={1989} title={The G. Schirmer Manual of Style and Usage}, address={New York}, publisher={The G. Schirmer Publications Department}, - year={2001} + year={2001}, note={This is the style guide for Schirmer publications. This manual specifically focuses on preparing print for publication by Schirmer. It discusses many details that are not in other, normal @@ -339,7 +339,7 @@ It can be ordered from the rental department. title = {Notation}, publisher = {Bärenreiter Verlag}, year = 2000, - number = {BVK1625} + number = {BVK1625}, annote = {Articles from "Musik in Geschichte und Gegenwart" pertaining to notation. Both "alternative" notation and ancient diff --git a/Documentation/topdocs/README.texi b/Documentation/topdocs/README.texi index 1a1b00fc6b..c99c99b5d5 100644 --- a/Documentation/topdocs/README.texi +++ b/Documentation/topdocs/README.texi @@ -22,8 +22,6 @@ LilyPond uses a versioning scheme similar to the Linux kernel. In a version "x.y.z", an even second number 'y' denotes a stable version. For development versions 'y' is odd. -Version 1.6 is the latest stable release. - @section Downloading The primary download site for sourcecode is diff --git a/Documentation/user/lilypond-book.itely b/Documentation/user/lilypond-book.itely index 5e03f8744c..952d5fd5ec 100644 --- a/Documentation/user/lilypond-book.itely +++ b/Documentation/user/lilypond-book.itely @@ -380,6 +380,15 @@ following to the top of the La@TeX{} file: \def\preLilyPondExample@{\def\mustmakelilypondtitle@{@}@} @end example + +For printing the La@TeX{} document, you will need to use dvips. For +producing PS with scalable fonts, add the following options to the dvips +command line: +@example + -Ppdf -u +lilypond.map +@end example + + @command{lilypond-book} accepts the following command line options: @table @code diff --git a/lily/slur.cc b/lily/slur.cc index 023c5a20dd..7efcc2dc39 100644 --- a/lily/slur.cc +++ b/lily/slur.cc @@ -288,7 +288,8 @@ Slur::get_attachment (Grob *me, Direction dir, Grob **common) { SCM s = me->get_grob_property ("attachment"); - if (!gh_symbol_p (index_get_cell (s, dir))) + + if (!gh_pair_p (s) || !gh_symbol_p (index_get_cell (s, dir))) { s = set_extremities (me); }