]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 28 Nov 2005 23:40:44 +0000 (23:40 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 28 Nov 2005 23:40:44 +0000 (23:40 +0000)
lily/bar-line.cc
make/ly-rules.make
scm/output-lib.scm
scripts/lilypond-book.py

index 61734a5f9bcc1c1873abda605717a4d94bffa9fc..ad03166ff16512015c15f278a457dca14c80455c 100644 (file)
@@ -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;
 }
 
index 7900db9cf42053c03df2c5d77f516e6314ee156f..902c7a081d39679b778fc57ca41fa6084a41a4c5 100644 (file)
@@ -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 $<
index a060b6ca3ba7b9a191947187a738771e4f1f41fa..cbbc623152f43cfbd002a149db655f0d0b775822 100644 (file)
@@ -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))
 
index 673afa8d3363e1bcbe374ad5eeb732d530578307..7da606e0a4e2bd66a7b53a5713f68c13e0ea8f75 100644 (file)
@@ -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: