]> git.donarmstrong.com Git - lilypond.git/commitdiff
set bar-size, so bar-lines aren't
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 6 Dec 2005 23:09:11 +0000 (23:09 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 6 Dec 2005 23:09:11 +0000 (23:09 +0000)
collapsed.

ChangeLog
ly/engraver-init.ly
scm/define-markup-commands.scm

index 3c508926f60be8273a79881f4f4d10fbdf03f019..984add0693e1b73a4434ecb36cf2cb03fa9642e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-07  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * ly/engraver-init.ly: set bar-size, so bar-lines aren't
+       collapsed.
+
 2005-12-06 Erik Sandberg  <mandolaerik@gmail.com>
 
        * scm/music-functions.scm: Make phrasing slurs follow voice direction
index 90bfa08c87ee16b6323bd3c7b87245cc72f7d0a4..8e332495ef3a926a1576e380d35ad225ea3fd720 100644 (file)
@@ -350,6 +350,12 @@ printing of a single line of lyrics.  "
   \override VerticalAxisGroup #'remove-first = ##t
   \override VerticalAxisGroup #'remove-empty = ##t
   \override SeparationItem #'padding = #0.2
+
+
+  %% make sure that barlines aren't collapsed, when
+  %% Bar_engraver is there.
+  \override BarLine #'bar-size = #0.1 
+  
 }
 
 \context {
index 6f1cf2b256e8b8379c5db12bb6fb8c8590604457..4e8e408db0117780c7554960dd8ff0def84c69a2 100644 (file)
@@ -1274,7 +1274,13 @@ that.
 (def-markup-command (bracketed-y-column layout props indices args)
   (list? markup-list?)
   "Make a column of the markups in @var{args}, putting brackets around
-the elements marked in @var{indices}, which is a list of numbers."
+the elements marked in @var{indices}, which is a list of numbers.
+
+"
+;;
+;; DROPME? This command is a relic from the old figured bass implementation.
+;;
+  
   (define (sublist lst start stop)
     (take (drop lst start) (- (1+ stop) start)))