From: Han-Wen Nienhuys Date: Mon, 28 Nov 2005 23:40:44 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.7.21~25 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=89c196955a1f26649a922596e325b118505bbbd1;p=lilypond.git *** empty log message *** --- diff --git a/lily/bar-line.cc b/lily/bar-line.cc index 61734a5f9b..ad03166ff1 100644 --- a/lily/bar-line.cc +++ b/lily/bar-line.cc @@ -131,6 +131,10 @@ Bar_line::compound_barline (Grob *me, String str, Real h, m.add_stencil (d); } } + else if (str == ".") + { + m = dot; + } return m; } diff --git a/make/ly-rules.make b/make/ly-rules.make index 7900db9cf4..902c7a081d 100644 --- a/make/ly-rules.make +++ b/make/ly-rules.make @@ -23,7 +23,7 @@ $(outdir)/%.texi: $(outdir)/%.tely $(outdir)/%.nexi: %.tely rm -f $(outdir)/$*.texi $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) --process='true' $< - mv $(outdir)/$*.texinfo $@ 2>/dev/null || mv $(outdir)/$*.texi $@ + mv -f $(outdir)/$*.texinfo $@ 2>/dev/null || mv -f $(outdir)/$*.texi $@ $(outdir)/%.info: $(outdir)/%.nexi $(MAKEINFO) -I $(outdir) --output=$(outdir)/$(*F).info $< diff --git a/scm/output-lib.scm b/scm/output-lib.scm index a060b6ca3b..cbbc623152 100644 --- a/scm/output-lib.scm +++ b/scm/output-lib.scm @@ -221,6 +221,7 @@ centered, X==1 is at the right, X == -1 is at the left." (".|." . (".|." . ())) ("" . ("" . "")) (":" . (":" . "")) + ("." . ("." . ())) ("empty" . (() . ())) ("brace" . (() . "brace")) ("bracket" . (() . "bracket")) ))) @@ -230,7 +231,7 @@ centered, X==1 is at the right, X == -1 is at the left." (index-cell (cdr result) dir) #f))) ) - + (if (not glyph-name) (ly:grob-suicide! grob)) diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 673afa8d33..7da606e0a4 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -711,7 +711,7 @@ class Chunk: return 0 def is_plain (self): - return false + return False class Substring (Chunk): def __init__ (self, source, start, end, line_number): @@ -722,7 +722,7 @@ class Substring (Chunk): self.override_text = None def is_plain (self): - return true + return True def replacement_text (self): if self.override_text: