]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
index 9bcb1539028c7e52dd7761f1327db08678eb6263..98fa6bc09987f123914c01068bea20ca9526d62d 100644 (file)
@@ -1,29 +1,25 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.26
-\version "2.13.31"
+%% DO NOT EDIT this file manually; it is automatically
+%% 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.18.0"
+
 \header {
-%% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
-  texidocfr = "Cet exemple illustre comment, lorsqu'une note affublée
-  d'une altération accidentelle est prolongée, ne pas répéter cette
-  altération après un saut de ligne.
-"
-  doctitlefr = "Non répétition de l'altération après saut de ligne
-  sur liaison de prolongation"
+  lsrtags = "pitches"
 
+  texidoc = "
+This shows how to hide accidentals on tied notes at the start of a new
+system.
 
-  lsrtags = "pitches"
-  texidoc = "This shows how to hide accidentals on tied notes at the beginning of a
-new system."
-  doctitle = "Hiding accidentals on tied notes at the beginning of a new system"
+"
+  doctitle = "Hiding accidentals on tied notes at the start of a new system"
 } % begin verbatim
 
-
 \relative c'' {
-  \override Accidental #'hide-tied-accidental-after-break = ##t
+  \override Accidental.hide-tied-accidental-after-break = ##t
   cis1~ cis~
   \break
   cis
 }
-