From: Han-Wen Nienhuys Date: Mon, 15 May 2006 11:49:14 +0000 (+0000) Subject: * Documentation/user/GNUmakefile: dist context-example.eps too. X-Git-Tag: release/2.9.5~18 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3e129b0aa2a7e6e6338438c6b712947325c47106;p=lilypond.git * Documentation/user/GNUmakefile: dist context-example.eps too. * lily/key-engraver.cc (create_key): use explicitKeySignatureVisibility for cancellation too. Backportme. * lily/font-config.cc (init_fontconfig): don't close file if f==NULL. Backportme. --- diff --git a/ChangeLog b/ChangeLog index 2e70acc09b..cb2b35e3f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-05-15 Han-Wen Nienhuys + + * Documentation/user/GNUmakefile: dist context-example.eps too. + + * lily/key-engraver.cc (create_key): use + explicitKeySignatureVisibility for cancellation too. Backportme. + + * lily/font-config.cc (init_fontconfig): don't close file if + f==NULL. Backportme. + 2006-05-15 Erlend Aasland * Documentation/topdocs/NEWS.tely: niente and rotation news diff --git a/Documentation/topdocs/NEWS.tely b/Documentation/topdocs/NEWS.tely index 5d21453fd0..b17a0280d9 100644 --- a/Documentation/topdocs/NEWS.tely +++ b/Documentation/topdocs/NEWS.tely @@ -99,7 +99,7 @@ The beam printing code has been completely rewritten, and now includes support for feathered beaming, @lilypond[ragged-right,fragment,relative=2] -\featherDurations #(ly:make-moment 3 4) +\featherDurations #(ly:make-moment 5 4) { \override Beam #'grow-direction = #LEFT c16[ diff --git a/Documentation/user/GNUmakefile b/Documentation/user/GNUmakefile index f8d23a013c..a56214436c 100644 --- a/Documentation/user/GNUmakefile +++ b/Documentation/user/GNUmakefile @@ -5,8 +5,10 @@ LATEX_FILES =$(call src-wildcard,*.latex) # todo: add latex. DVI_FILES = $(TELY_FILES:%.tely=$(outdir)/%.dvi) -EXTRA_DIST_FILES= $(LATEX_FILES) $(IMAGES) README.txt +EXTRA_DIST_FILES= $(LATEX_FILES) $(IMAGES) README.txt $(ILLUSTRATIONS) + IMAGES=$(call src-wildcard,*.png) +ILLUSTRATIONS=context-example.eps OUT_EPS_IMAGES=$(IMAGES:%.png=$(outdir)/%.eps) OUT_PNG_IMAGES=$(IMAGES:%=$(outdir)/%) diff --git a/THANKS b/THANKS index 02ba810a4d..4f4077d1e2 100644 --- a/THANKS +++ b/THANKS @@ -37,6 +37,7 @@ Juergen Reuter BUG HUNTERS/SUGGESTIONS Aurèle Duda +Cameron Horsburgh Claude Routhier Christopher Ellis Colin Wilding @@ -49,6 +50,7 @@ Orm Finnendahl Rick Hansen Sietse Brouwer Stephen Carter +Trent Johnston Werner Lemberg Release 2.8 diff --git a/configure.in b/configure.in index 1e69994e1c..29bc273838 100644 --- a/configure.in +++ b/configure.in @@ -71,6 +71,7 @@ else NCSB_FILE=`$FCMATCH --verbose 'Century Schoolbook L:style=$style' | grep 'file:'` NCSB_FILE=`echo $NCSB_FILE | sed 's/^.*"\(.*\)".*$/\1/g'` + NCSB_FILE=`readlink -f $NCSB_FILE` NCSB_SOURCE_FILES="$NCSB_FILE $NCSB_SOURCE_FILES" done else diff --git a/lily/font-config.cc b/lily/font-config.cc index 393feb2b6c..b59325f55a 100644 --- a/lily/font-config.cc +++ b/lily/font-config.cc @@ -62,7 +62,8 @@ init_fontconfig () { /* inhibit future messages. */ FILE *f = fopen ((char*)cache_file, "w"); - fclose (f); + if (f) + fclose (f); } } diff --git a/lily/key-engraver.cc b/lily/key-engraver.cc index f46717fb91..b2c4ce7cba 100644 --- a/lily/key-engraver.cc +++ b/lily/key-engraver.cc @@ -106,6 +106,8 @@ Key_engraver::create_key (bool is_default) { SCM visibility = get_property ("explicitKeySignatureVisibility"); item_->set_property ("break-visibility", visibility); + if (cancellation_) + cancellation_->set_property ("break-visibility", visibility); } }