]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/suppressing-warnings-for-clashing-note-columns.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / suppressing-warnings-for-clashing-note-columns.ly
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.62"
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}.
14 "
15   doctitle = "Suppressing warnings for clashing note columns"
16 } % begin verbatim
17
18 ignore = \override NoteColumn #'ignore-collision = ##t
19
20 \relative c' {
21   <<
22     \ignore
23     { \stemDown f2 g }
24     \\
25     { c2 c, }
26   >>
27 }