]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/consistently-left-aligned-bar-numbers.ly
Release: bump Welcome versions.
[lilypond.git] / Documentation / snippets / consistently-left-aligned-bar-numbers.ly
index 46e86777edef84af77a71fca8e6c1d21e6cdc9f6..c37bc7240e355fba846c72567419ad59bc45d33a 100644 (file)
@@ -1,17 +1,17 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.unimi.it
 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.16.0"
+\version "2.18.0"
 
 \header {
   lsrtags = "rhythms"
 
   texidoc = "
 When left aligning bar numbers, overlapping problems may occur with
-Staves brackets. The snippet solves this by keeping right aligned the
+Staves brackets.  The snippet solves this by keeping right aligned the
 first bar number following line breaks.
 
 "
@@ -19,8 +19,8 @@ first bar number following line breaks.
 } % begin verbatim
 
 consistentlyLeftAlignedBarNumbers = {
-  \override Score.BarNumber #'break-visibility = #end-of-line-invisible
-  \override Score.BarNumber #'self-alignment-X =
+  \override Score.BarNumber.break-visibility = #end-of-line-invisible
+  \override Score.BarNumber.self-alignment-X =
     #(lambda (grob)
        (let ((break-dir (ly:item-break-dir grob)))
          (if (= break-dir RIGHT) RIGHT LEFT)))