LSR: Update.
[lilypond.git] / input / lsr / suppressing-warnings-for-clashing-note-columns.ly
blobb79728b19bcbd95f081cfd542c08a44488d1a3bd
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.49"
4 \header {
5 lsrtags = "simultaneous-notes,tweaks-and-overrides"
6 texidoc = "
7 If notes from two voices with stems in the same direction are
8 placed at the same position, and both voices have no shift or the
9 same shift specified, the error message \"warning: ignoring too
10 many clashing note columns\" will appear when compiling the
11 LilyPond file. This message can be suppressed by setting the
12 @code{'ignore-collision} property of the @code{NoteColumn} object
13 to @code{#t}.
15 doctitle = "Suppressing warnings for clashing note columns"
16 } % begin verbatim
18 ignore = \override NoteColumn #'ignore-collision = ##t
20 \relative c' <<
21 \ignore
22 { \stemDown f2 g } \\
23 { c2 c, }