]> git.donarmstrong.com Git - lilypond.git/commitdiff
(year): typos.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 26 Aug 2003 17:05:57 +0000 (17:05 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 26 Aug 2003 17:05:57 +0000 (17:05 +0000)
ChangeLog
Documentation/bibliography/engraving.bib
Documentation/topdocs/README.texi
Documentation/user/lilypond-book.itely
lily/slur.cc

index 9cd70c2cbf9b5c547e6457626b0244611c5f7be3..2de0d9aac93c2a905a30445fc378698301041217 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
+2003-08-26  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * Documentation/bibliography/engraving.bib (year): typos.
+
+2003-08-25  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
+       add note about -Ppdf
+
 2003-08-23  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * 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  <hanwen@cs.uu.nl>
index a2a25151bf10b6eedbbe20dc54c2e700526477c3..5dfb713820bfa2ba2f7714b5eacf038556c0193a 100644 (file)
@@ -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
index 1a1b00fc6b4a63f5661fbeda0f8eb4caa443c1f1..c99c99b5d5a42106493e1b99d1f2c9d63a5fab7f 100644 (file)
@@ -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
index 5e03f8744c1b8745a83568658911653e8ad13f3c..952d5fd5ecbcb2d00aaabd4c14e44d34e62ca024 100644 (file)
@@ -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
index 023c5a20dd1a488eef21b6b50a6d1f3f4955f01f..7efcc2dc39619b6cbf08279c65d85e1495ec2a12 100644 (file)
@@ -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);
     }