]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 6 Dec 2004 23:21:10 +0000 (23:21 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 6 Dec 2004 23:21:10 +0000 (23:21 +0000)
51 files changed:
ChangeLog
Documentation/topdocs/NEWS.texi
VERSION
configure.in
lily/accidental-placement.cc
lily/bar-line.cc
lily/beam-concave.cc
lily/beam-quanting.cc
lily/beam.cc
lily/bezier-bow.cc
lily/bezier.cc
lily/break-align-interface.cc
lily/custos.cc
lily/dimension-cache.cc
lily/dot-column.cc
lily/font-metric.cc
lily/font-select.cc
lily/gourlay-breaking.cc
lily/grob-property.cc
lily/grob.cc
lily/lily-guile.cc
lily/line-spanner.cc
lily/lookup.cc
lily/lyric-extender.cc
lily/lyric-hyphen.cc
lily/mensural-ligature.cc
lily/midi-def.cc
lily/misc.cc
lily/note-collision.cc
lily/note-column.cc
lily/note-head.cc
lily/paper-outputter.cc
lily/percent-repeat-item.cc
lily/rest-collision.cc
lily/side-position-interface.cc
lily/simple-spacer.cc
lily/slur-configuration.cc
lily/slur-scoring.cc
lily/slur.cc
lily/spaceable-grob.cc
lily/spacing-spanner.cc
lily/spanner.cc
lily/staff-symbol-referencer.cc
lily/stem.cc
lily/stencil.cc
lily/system-start-delimiter.cc
lily/system.cc
lily/text-item.cc
lily/tie.cc
lily/tuplet-bracket.cc
lily/vaticana-ligature.cc

index 85123c80c2d9eef306de7b134e9cb09e462b749b..baefbfc0ba8fd3d13e7426c7968a0421cdcd7f5d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,55 @@
+2004-12-05  Christian Hitz  <chhitz@gmx.net>
+
+       * configure.in:
+       * lily/accidental-placement.cc:
+       * lily/bar-line.cc:
+       * lily/beam-concave.cc:
+       * lily/beam-quanting.cc:
+       * lily/beam.cc:
+       * lily/bezier-bow.cc:
+       * lily/bezier.cc:
+       * lily/break-align-interface.cc:
+       * lily/custos.cc:
+       * lily/dimension-cache.cc:
+       * lily/dot-column.cc:
+       * lily/font-metric.cc:
+       * lily/font-select.cc:
+       * lily/gourlay-breaking.cc:
+       * lily/grob-property.cc:
+       * lily/grob.cc:
+       * lily/lily-guile.cc:
+       * lily/line-spanner.cc:
+       * lily/lookup.cc:
+       * lily/lyric-extender.cc:
+       * lily/lyric-hyphen.cc:
+       * lily/mensural-ligature.cc:
+       * lily/midi-def.cc:
+       * lily/misc.cc:
+       * lily/note-collision.cc:
+       * lily/note-column.cc:
+       * lily/note-head.cc:
+       * lily/paper-outputter.cc:
+       * lily/percent-repeat-item.cc:
+       * lily/rest-collision.cc:
+       * lily/side-position-interface.cc:
+       * lily/simple-spacer.cc:
+       * lily/slur-configuration.cc:
+       * lily/slur-scoring.cc:
+       * lily/slur.cc:
+       * lily/spaceable-grob.cc:
+       * lily/spacing-spanner.cc:
+       * lily/spanner.cc:
+       * lily/staff-symbol-referencer.cc:
+       * lily/stem.cc:
+       * lily/stencil.cc:
+       * lily/system-start-delimiter.cc:
+       * lily/system.cc:
+       * lily/text-item.cc:
+       * lily/tie.cc:
+       * lily/tuplet-bracket.cc:
+       * lily/vaticana-ligature.cc: Fix for MacOS X: use <math.h> instead of
+       <cmath> beacause isinf/isnan is undefined in <cmath>
+
 2004-12-03  Mats Bengtsson  <mabe@drongo.s3.kth.se>
 
        * cygwin/lily-wins.py (stat): remove old flag -p when calling lilypond.
index e39acda0764ab4578004c0a6efce42d651b1c3af..2a60f3f0b9679b5654d5a2aa8de417d62e5217a9 100644 (file)
@@ -7,6 +7,10 @@
 @unnumbered New features in 2.5 since 2.4
 
 @itemize @bullet
+@item
+A new script, @code{\espressivo} has been added, for a combination of
+crescendo and decrescendo on a single note.
+
 @item
 In markups, expressions stacked with @code{\column},
 @code{\center-align}, etc, are not grouped with @code{< ... >} anymore,
diff --git a/VERSION b/VERSION
index 5935b6cb1153d984f8b2f9b1efbe64c5321ba85f..49dba83996c7b41bbcbda2bf2eb03f223d1d4a84 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1,6 +1,6 @@
 PACKAGE_NAME=LilyPond
 MAJOR_VERSION=2
 MINOR_VERSION=5
-PATCH_LEVEL=2
+PATCH_LEVEL=3
 MY_PATCH_LEVEL=
 
index 83ea307aa1309143380ec00b45f9a75a5ac6e4d5..ab5bfc079a70d8e88e3da0cac836acb8aa1b674f 100644 (file)
@@ -13,8 +13,6 @@ AC_CONFIG_AUX_DIR([stepmake/bin])
 
 STEPMAKE_INIT
 
-
-
 # List a file that identifies your package.
 AC_CONFIG_SRCDIR([lily/main.cc])
 
@@ -84,7 +82,6 @@ else
     fi
 fi
 
-
 # This is developer only anyway, help pkgconfig a bit
 export PKG_CONFIG_PATH
 PKG_CONFIG_PATH=/usr/lib/pkgconfig:$PKG_CONFIG_PATH
@@ -117,7 +114,6 @@ if test "$optimise_b" = yes; then
     AC_DEFINE(STRINGS_UTILS_INLINED)
 fi
 
-
 AC_DEFINE_UNQUOTED(TOPLEVEL_VERSION, "${FULL_VERSION}")
 AC_DEFINE_UNQUOTED(FLOWER_VERSION, "${FULL_FLOWER_VERSION}")
 
index b81e4d5702a4cc654f571ec4c2528ae8334f3a22..1051f0ada439d1f88347a56b354e7fe7a2789cc9 100644 (file)
@@ -7,7 +7,7 @@
 
 */
 
-#include <cmath>
+#include <math.h>
 
 
 #include "accidental-placement.hh"
index 3489aff6bed436bb05e199ff5c035b0f5a62d1a1..42f03f423ca041da343e91fe8e6f85f9382147cd 100644 (file)
@@ -7,7 +7,7 @@
 */
 
 
-#include <cmath>
+#include <math.h>
 
 #include "bar-line.hh"
 #include "lookup.hh"
index bb956f5aded727d2b8a226acdf8e70b445ad1ad4..367a1a4990984af12948f84dbc0079b9364ba531 100644 (file)
@@ -2,7 +2,7 @@
    Determine whether a beam is concave.
  */
 
-#include <cmath>
+#include <math.h>
 
 #include "group-interface.hh"
 #include "array.hh"
index 2075eb76d31ecd5ac4c21e9cf2ddfe971fa7d9e7..ae8730dabaea58642da6a027d06c0b2c859106c2 100644 (file)
@@ -12,7 +12,7 @@
 
 
 
-#include <cmath>
+#include <math.h>
 
 #include "warn.hh"
 #include "staff-symbol-referencer.hh"
index 92d9f4979efb1b0cfe3d8bf725caccd6a1cb79ee..127054c7e822e099f4e0e0bb5cac84fb8128abcc 100644 (file)
@@ -27,7 +27,7 @@ Notes:
 
 
 
-#include <cmath> // tanh.
+#include <math.h> // tanh.
 
 #include "beam.hh"
 #include "interval-set.hh"
index 70072356edab1bc5f421909fad2d69e878b8f7dc..044a898d07bb837d5967390de2889c52706d5bd5 100644 (file)
@@ -6,7 +6,7 @@
   (c) 1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
-#include <cmath>
+#include <math.h>
 
 #include "misc.hh"
 #include "bezier.hh"
index 806d3855310c840d9372e7fd961d408b8434d99a..5b815e6b76cde7fc1efa622abda7378c7552b0b8 100644 (file)
@@ -7,7 +7,7 @@
 */
 
 
-#include <cmath>
+#include <math.h>
 
 #include "bezier.hh"
 #include "warn.hh"
index b3f5a786a91ce99a36e862d4506490ada186753e..1d302e6aeacfececff7a40d5c83edfc4f0752b66 100644 (file)
@@ -7,7 +7,7 @@
 */
 
 
-#include <cmath>
+#include <math.h>
 
 #include "break-align-interface.hh"
 #include <libc-extension.hh>   // isinf
index 758890fdf1460d3558e0224a75222db7fe518367..bdc155fb891b4c00e9f63ecdd48e67d7c7a611fe 100644 (file)
@@ -15,7 +15,7 @@
 */
 
 #include <cstdio>
-#include <cmath> // rint
+#include <math.h> // rint
 
 #include "custos.hh"
 #include "direction.hh"
index 052764232585b7efbbd661cb6bca62f64f5bbf68..8fe7318f8186a8434e7a5000666210d1972f812e 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 
-#include <cmath>
+#include <math.h>
 
 #include "dimension-cache.hh"
 #include "warn.hh"
index 47052f25498fe7f0e998de610eccc65dcaff7d3f..d44c11ef6df79098ff8c75e84263e592de825dc8 100644 (file)
@@ -9,7 +9,7 @@
 #include "dot-column.hh"
 
 #include <cstdio>
-#include <cmath>
+#include <math.h>
 #include <map>
 
 #include "dots.hh"
index 8a11c911a2a79a0d0a2773332cbe29043ecaf1b3..acd2d3b5f62bfcf44056b32fec7c4b774951a936 100644 (file)
@@ -10,7 +10,7 @@
 
 #include "font-metric.hh"
 
-#include <cmath>
+#include <math.h>
 #include <cctype>
 
 #include "modified-font-metric.hh"
index 713ee93b4f1b60015fb14369a28cfe36a7e6e594..3b17dedc2507c3ac13be1da072e33eecfaf7d474 100644 (file)
@@ -6,7 +6,7 @@
   (c) 2003--2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
-#include <cmath>
+#include <math.h>
 
 #include "all-font-metrics.hh"
 #include "output-def.hh"
index 62d134c00a74c97a007e4bdd7297c0e1c243cf2f..1c6fa03f27a5a25cd68a54f9954db2a03352c2ac 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "gourlay-breaking.hh"
 
-#include <cmath>               // rint
+#include <math.h>              // rint
 #include <cstdio>
 
 #include "warn.hh"
index f8ebf1fc352288384177b2a04053040118305668..ddba069a2e4f60d46e150fb0e3140bff7765686c 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 #include <cstring>
-#include <cmath>
+#include <math.h>
 
 #include "main.hh"
 #include "input-smob.hh"
index 030ce6ce6bc787773e45dd33d161a904d0d512d0..978fb1a3450efecf4aaaad96450c1f611f302c0a 100644 (file)
@@ -9,7 +9,7 @@
 #include "grob.hh"
 
 #include <cstring>
-#include <cmath>
+#include <math.h>
 
 #include "main.hh"
 #include "input-smob.hh"
index d7c8c39cb3ac9cd297665e990c771bab1bfe098d..f907fef75830bcfeec7d24c544b699be204dc173 100644 (file)
@@ -11,7 +11,7 @@
 
 #include <cstdio>
 #include <cstdlib>
-#include <cmath>   /* isinf */
+#include <math.h>   /* isinf */
 #include <cstring> /* strdup, strchr */
 #include <cctype>
 
 
 /* MacOS S fix:
    source-file.hh includes cmath which undefines isinf and isnan
-
-   FIXME: #ifdef MACOS_X?
 */
+#ifdef MACOS_X
 inline int my_isinf (Real r) { return isinf (r); }
 inline int my_isnan (Real r) { return isnan (r); }
+#endif
 
 #include "libc-extension.hh"
 #include "main.hh"
@@ -386,8 +386,11 @@ LY_DEFINE (ly_number2string, "ly:number->string",
   if (scm_exact_p (s) == SCM_BOOL_F)
     {
       Real r (scm_to_double (s));
-
+#ifdef MACOS_X
       if (my_isinf (r) || my_isnan (r))
+#else
+      if (isinf (r) || isnan (r))
+#endif
        {
          programming_error ("Infinity or NaN encountered while converting Real number; setting to zero.");
          r = 0.0;
index aa517a77ea614ba8178eca8f49b81500188ac331..201df916f0df9c731578b7db6b008807a0c9b550 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "line-spanner.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "spanner.hh"
 #include "output-def.hh"
index 2a46069662bf7f416f350fce3d9afc02bc5a4bef..dd82090959a71675436e08f18f532db26fabcb0e 100644 (file)
@@ -10,7 +10,7 @@
 
 #include "lookup.hh"
 
-#include <cmath>
+#include <math.h>
 #include <cctype>
 
 #include "line-interface.hh"
index 5776e88486e4a0d78d8f204102ccc1f054ac86fb..cf258e01bd4253a553b87f5bf8e396eb34feb275 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "lyric-extender.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "warn.hh"
 #include "lookup.hh"
index 62bcce8a54be2ffec01f8c8101281ae32dcfefe5..39cd7555f5d858e80daa4d90d20c742f42f391f9 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "lyric-hyphen.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "lookup.hh"
 #include "output-def.hh"
index bcb05b8977fd22674325e5968cc899f1ff57672f..7c3889e12de1b64d496d08cb400d0c21e4b9027f 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "mensural-ligature.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "item.hh"
 #include "font-interface.hh"
index 0d3122b7ba62369e6e1dfaea0218d7398bf703a3..341ff00e266b0bebb774fdb658f1e2ba19586227 100644 (file)
@@ -7,7 +7,7 @@
 
 */
 
-#include <cmath>
+#include <math.h>
 
 #include "misc.hh"
 #include "output-def.hh"
index 036cbd7e507d48e009808c307153b2d2b3a8829e..95d730b9e7a1069b454b03878c06da2dc1583159 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "misc.hh"
 
-#include <cmath>
+#include <math.h>
 
 /*
   Return the 2-log, rounded down 
index 0aef74e9b87e51cfd941ad84cd7c59f7a311de03..dcb43adc85ba86ba759d696c0ec0dea48aee4350 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "note-collision.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "warn.hh"
 #include "note-column.hh"
index c88f9b3e8acccfab2ed1c4142d8967152b18fc2f..b44e7be487d72e3dab359f788fde720f1cebd851 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "note-column.hh"
 
-#include <cmath>               // ceil
+#include <math.h>              // ceil
 
 #include "axis-group-interface.hh"
 #include "stem.hh"
index 8e8da2d500aadcb6015c8949d29da00d6ca84bb1..211e3d7b43b605f3629fa2c2a12d692d23ea5392 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "note-head.hh"
 
-#include <cmath>
+#include <math.h>
 #include <cctype>
 
 #include "directional-element-interface.hh"
index 23e5f9cfc62c7f61091a9c4afbdef1ef0ae82024..72135b91389ca4cddd41892198861df5bff93b26 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "paper-outputter.hh"
 
-#include <cmath>
+#include <math.h>
 #include <ctime>
 
 #include "dimensions.hh"
index eddb2656a9606c2d2b9a739be142cf785d6ffad0..f7b553b20699b8f254b8569d50d5d594e94ab748 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "percent-repeat-item.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "lookup.hh"
 #include "font-interface.hh"
index 7661707adee709107c33aa38e68e9c8d33464cbe..679a9426216c281185925314174da7c672a1ebd4 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "rest-collision.hh"
 
-#include <cmath>               // ceil.
+#include <math.h>              // ceil.
 
 #include "warn.hh"
 #include "note-column.hh"
index deaaf5f3aae4b941a1edfce62f8a0277a2c6f250..832cdae64583c75dd302a623f1f806635dce752a 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "side-position-interface.hh"
 
-#include <cmath>               // ceil.
+#include <math.h>              // ceil.
 
 #include "note-head.hh"
 #include "warn.hh"
index 515d3c0eebff23c295ea893d0fdb541307bb28a1..590cbbf58db1ae311845aac0a88caae6bd25219d 100644 (file)
@@ -13,7 +13,7 @@
 #include "simple-spacer.hh"
 
 #include <cstdio>
-#include <cmath>
+#include <math.h>
 
 #include <libc-extension.hh>   // isinf
 
index 4889c9c920abdea9d342e63700810325376c3ac0..d13f96f8e211516ecdf8b653e6c21980a1ae102e 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "slur-configuration.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "stem.hh"
 #include "warn.hh"
index 3d381d09aa6efd46f70b8efd0c8e0f6eaafbc74a..999fd3f7dc196d92dc92f9f1df197c999603b38e 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "slur-scoring.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "libc-extension.hh"
 #include "slur-configuration.hh"
index c1a0c96c2e17496cd822802bebce7ca158a9af8c..5f42e7c688c40661d60e21faf658d9a15af2401b 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "slur.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "beam.hh"
 #include "bezier.hh"
index 2dc389736ca9ae6783fa43887bcb6263b636fecc..99b87cd24264bd526b7ed3548ffbbe13690ab0cc 100644 (file)
@@ -10,7 +10,7 @@
 #include "spaceable-grob.hh"
 
 #include <cstdio> 
-#include <cmath>
+#include <math.h>
 
 #include "warn.hh"
 #include "spring.hh"
index e01511538f5af559fbaec6175c65fe2d561ff163..14aeee2d7d1d75445d3d8393ac9d8095700bb84e 100644 (file)
@@ -7,7 +7,7 @@
   
  */
 
-#include <cmath>
+#include <math.h>
 #include <cstdio>
 
 #include "main.hh"
index 69251e2a2ab3166d6e84b732061f37ce248cb53b..3f7ebd7e4b0a74ad78190bac98dc2e83f61d9211 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "spanner.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include <libc-extension.hh>
 
index b02e7620f460d91293b1f3e4611be3fcf240eb3c..1e4238fef12137da70b744cf21ccb93c839e1c72 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "staff-symbol-referencer.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "staff-symbol.hh"
 #include "output-def.hh"
index 940284971a29b658c1f6e7a9a9f300c8ae76489c..69453f6cdcbb8498c75715e289012444a2978fd2 100644 (file)
@@ -15,7 +15,7 @@
 
 #include "stem.hh"
 
-#include <cmath>               // rint
+#include <math.h>              // rint
 
 #include "lookup.hh"
 #include "directional-element-interface.hh"
index 35338f0b6c25bf00b05773af7202cf470ff9875f..c684dcb31c7d7fc4feeb5cd12532f88592b290c3 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "stencil.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include <libc-extension.hh>   // isinf
 
index 9062e6c37d142626954b874bc1e3b2a64ecb99f0..d6aea8a81fde789b8085aa9f55e242a6a360fa24 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "system-start-delimiter.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "spanner.hh"
 #include "axis-group-interface.hh"
index 7c3d287cca814efa5b7f762452f580249c5bff96..cf8854825dc07744a45670a4bcee28707a587890 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "system.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "align-interface.hh"
 #include "axis-group-interface.hh"
index 758252f32b4b4a8d544cdfe6fd0b2fb478bf7cc7..47cfa06269548762ff90dcaab7ae1122289e4c36 100644 (file)
@@ -9,7 +9,7 @@
 
 #include "text-item.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "warn.hh"
 #include "grob.hh"
index 36db5cb037b18e36539f6fee6538f066147eb824..c23b51af4519ad03ba2c06c38751666d14840cce 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "tie.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "spanner.hh"
 #include "lookup.hh"
index dd1fda286d33ef30f915bf47657821db7d5d156a..c011f2e3690e76c6ae67da256cb04d31b339bbe4 100644 (file)
@@ -25,7 +25,7 @@
 
 #include "tuplet-bracket.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "line-interface.hh"
 #include "beam.hh"
index 90fffe01744b52b663b67e500ac7c5361ca053bb..b10d197230f703640e1f12f3da852d207c6a8bb4 100644 (file)
@@ -8,7 +8,7 @@
 
 #include "vaticana-ligature.hh"
 
-#include <cmath>
+#include <math.h>
 
 #include "item.hh"
 #include "font-interface.hh"