]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/suppressing-compiler-warnings-when-two-glissandos-intersect.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / lsr / suppressing-compiler-warnings-when-two-glissandos-intersect.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.46"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoc = "
9 When two or more glissandi intersect with each other, a warning
10 message, \"warning: ignoring too many clashing note columns\" will
11 appear when compiling the LilyPond file.  Here is a way to get rid of
12 this message. 
13
14 "
15   doctitle = "Suppressing compiler warnings when two glissandos intersect"
16 } % begin verbatim
17 Ignore = \once \override NoteColumn #'ignore-collision = ##t
18
19 \relative c'' <<
20   { b1 \glissando c, } \\
21   { \Ignore b1 \glissando \Ignore c' }
22 >>