Reviewers: ,
Message:
Please review.
I didn't touch the translations. Correct?
git grep "#'#"
returns one file I don't know what to do with:
Binary file Documentation/pictures/baer-sarabande-original.jpg matches
Description:
Removes '-signs from vectors
Removes '-signs in vectors from the docs.
Please review this at http://codereview.appspot.com/6923043/
Affected files:
M Documentation/ly-examples/cary-layout.ily
M Documentation/notation/changing-defaults.itely
M Documentation/notation/rhythms.itely
M
Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
M
Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly
M
Documentation/snippets/separating-key-cancellations-from-key-signature-changes.ly
M input/regression/bar-number-volta-repeat.ly
M input/regression/collision-head-solfa-fa.ly
M input/regression/compound-time-signatures.ly
M input/regression/easy-notation.ly
M input/regression/note-head-solfa.ly
M ly/property-init.ly
Index: Documentation/ly-examples/cary-layout.ily
diff --git a/Documentation/ly-examples/cary-layout.ily
b/Documentation/ly-examples/cary-layout.ily
index
fb30bb04db754bdc3d1e60e631d307bd6c8e898e..85db19169c697f4a3520df4c75af5d9db16ecdfa
100644
--- a/Documentation/ly-examples/cary-layout.ily
+++ b/Documentation/ly-examples/cary-layout.ily
@@ -77,28 +77,28 @@ fraction = #(define-music-function (parser location
music) (ly:music?)
#{ \tweak text #tuplet-number::calc-fraction-text #music #})
triangle = #(define-music-function (parser location music) (ly:music?)
- #{ \once \set shapeNoteStyles = #'#(do do do do do do do) #music #})
+ #{ \once \set shapeNoteStyles = ##(do do do do do do do) #music #})
semicircle = #(define-music-function (parser location music) (ly:music?)
- #{ \once \set shapeNoteStyles = #'#(re re re re re re re) #music #})
+ #{ \once \set shapeNoteStyles = ##(re re re re re re re) #music #})
blackdiamond = #(define-music-function (parser location music) (ly:music?)
- #{ \once \set shapeNoteStyles = #'#(mi mi mi mi mi mi mi) #music #})
+ #{ \once \set shapeNoteStyles = ##(mi mi mi mi mi mi mi) #music #})
tiltedtriangle = #(define-music-function (parser location music)
(ly:music?)
- #{ \once \set shapeNoteStyles = #'#(fa fa fa fa fa fa fa) #music #})
+ #{ \once \set shapeNoteStyles = ##(fa fa fa fa fa fa fa) #music #})
square = #(define-music-function (parser location music) (ly:music?)
- #{ \once \set shapeNoteStyles = #'#(la la la la la la la) #music #})
+ #{ \once \set shapeNoteStyles = ##(la la la la la la la) #music #})
wedge = #(define-music-function (parser location music) (ly:music?)
- #{ \once \set shapeNoteStyles = #'#(ti ti ti ti ti ti ti) #music #})
+ #{ \once \set shapeNoteStyles = ##(ti ti ti ti ti ti ti) #music #})
harmonic = #(define-music-function (parser location music) (ly:music?)
- #{ \once \set shapeNoteStyles = #'#(harmonic harmonic harmonic harmonic
harmonic harmonic harmonic) #music #})
+ #{ \once \set shapeNoteStyles = ##(harmonic harmonic harmonic harmonic
harmonic harmonic harmonic) #music #})
cross = #(define-music-function (parser location music) (ly:music?)
- #{ \once \set shapeNoteStyles = #'#(cross cross cross cross cross cross
cross) #music #})
+ #{ \once \set shapeNoteStyles = ##(cross cross cross cross cross cross
cross) #music #})
white = #(define-music-function (parser location music) (ly:music?)
#{ \once \override NoteHead.duration-log = #1 #music #})
Index: Documentation/notation/changing-defaults.itely
diff --git a/Documentation/notation/changing-defaults.itely
b/Documentation/notation/changing-defaults.itely
index
f473176eec8d9bc262e0cabb77a0d1a7cd9e06a3..42a3f40d7b32d77a557ab40b515498f529dc7d58
100644
--- a/Documentation/notation/changing-defaults.itely
+++ b/Documentation/notation/changing-defaults.itely
@@ -3197,7 +3197,7 @@ visibility of bar lines:
f4 g a b
f4 g a b
% Remove bar line at the end of the current line
-\once \override Score.BarLine.break-visibility = #'#(#f #t #t)
+\once \override Score.BarLine.break-visibility = ##(#f #t #t)
\break
f4 g a b
f4 g a b
Index: Documentation/notation/rhythms.itely
diff --git a/Documentation/notation/rhythms.itely
b/Documentation/notation/rhythms.itely
index
dbfc038cd389be05a7cda40812604d592facae9b..50eb9f7ad1f00d37645cadc93f03c60755b95c31
100644
--- a/Documentation/notation/rhythms.itely
+++ b/Documentation/notation/rhythms.itely
@@ -2959,7 +2959,7 @@ line visible}, @code{beginning of line visible}. In
the following
example bar numbers are printed at all possible places:
@lilypond[verbatim,quote,relative=1]
-\override Score.BarNumber.break-visibility = #'#(#t #t #t)
+\override Score.BarNumber.break-visibility = ##(#t #t #t)
\set Score.currentBarNumber = #11
% Permit first bar number to be printed
\bar ""
Index:
Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
diff --git
a/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
b/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
index
113ee328b7e27a225e0b6e6f1122a642dd030fdd..62dad7ec1c415843e4cc01907b3fc8960c568b09
100644
---
a/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
+++
b/Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
@@ -42,7 +42,7 @@ fragment = {
\new Staff {
\transpose c d
\relative c' {
- \set shapeNoteStyles = #'#(do re mi fa
+ \set shapeNoteStyles = ##(do re mi fa
#f la ti)
\fragment
}
@@ -50,7 +50,7 @@ fragment = {
\break
\relative c' {
- \set shapeNoteStyles = #'#(cross triangle fa #f
+ \set shapeNoteStyles = ##(cross triangle fa #f
mensural xcircle diamond)
\fragment
}
Index:
Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly
diff --git
a/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly
b/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly
index
9536864eaa9f9bc4576d24f987691f5df07b6db6..8df5f99d7677cf8df5be829bdf0afecfd60037e6
100644
---
a/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly
+++
b/Documentation/snippets/preventing-final-mark-from-removing-final-tuplet.ly
@@ -25,7 +25,7 @@ tuplet marking. This can be overcome by setting
@code{TupletBracket
\times 2/3 { c'16 c'16 c'16 }
\times 2/3 { c'16 c'16 c'16 }
\times 2/3 { c'16 c'16 c'16 }
- \override Score.RehearsalMark.break-visibility = #'#(#t #t #t)
+ \override Score.RehearsalMark.break-visibility = ##(#t #t #t)
\override Score.RehearsalMark.direction = #DOWN
\override Score.RehearsalMark.self-alignment-X = #RIGHT
% due to issue 2362 the following line is commented
@@ -43,7 +43,7 @@ tuplet marking. This can be overcome by setting
@code{TupletBracket
\times 2/3 { c'16 c'16 c'16 }
\times 2/3 { c'16 c'16 c'16 }
\times 2/3 { c'16 c'16 c'16 }
- \override Score.RehearsalMark.break-visibility = #'#(#t #t #t)
+ \override Score.RehearsalMark.break-visibility = ##(#t #t #t)
\override Score.RehearsalMark.direction = #DOWN
\override Score.RehearsalMark.self-alignment-X = #RIGHT
% due to issue 2362 the following line is commented
Index:
Documentation/snippets/separating-key-cancellations-from-key-signature-changes.ly
diff --git
a/Documentation/snippets/separating-key-cancellations-from-key-signature-changes.ly
b/Documentation/snippets/separating-key-cancellations-from-key-signature-changes.ly
index
5f81f13b4d2ef93303e6f3604aa4c28f92cc3e8a..be7a8967d80d9988484487a719c2a8cb31b7af87
100644
---
a/Documentation/snippets/separating-key-cancellations-from-key-signature-changes.ly
+++
b/Documentation/snippets/separating-key-cancellations-from-key-signature-changes.ly
@@ -29,7 +29,7 @@ or the end.
\new Staff {
\override Score.BreakAlignment.break-align-orders =
- #'#((left-edge ambitus breathing-sign clef staff-bar
+ ##((left-edge ambitus breathing-sign clef staff-bar
key-cancellation key-signature time-signature custos)
(left-edge ambitus breathing-sign clef key-cancellation
Index: input/regression/bar-number-volta-repeat.ly
diff --git a/input/regression/bar-number-volta-repeat.ly
b/input/regression/bar-number-volta-repeat.ly
index
fe9a194d0f3ec7746970044d8dc09157aab7b9b6..6a3e4bf0758c3c6562f4a675fe2e5798063bd86c
100644
--- a/input/regression/bar-number-volta-repeat.ly
+++ b/input/regression/bar-number-volta-repeat.ly
@@ -10,7 +10,7 @@ musicWithBarNumberCheck =
(integer?)
#{
\relative c' {
- \override Score.BarNumber.break-visibility = #'#(#t #t #t)
+ \override Score.BarNumber.break-visibility = ##(#t #t #t)
\repeat volta 28 {
c1 |
c |
Index: input/regression/collision-head-solfa-fa.ly
diff --git a/input/regression/collision-head-solfa-fa.ly
b/input/regression/collision-head-solfa-fa.ly
index
ecc8d3688c63c58f34d6794059acb6cf7a491c29..8685cd62c11cccd4b372404bded494621aa901f7
100644
--- a/input/regression/collision-head-solfa-fa.ly
+++ b/input/regression/collision-head-solfa-fa.ly
@@ -8,13 +8,13 @@
{
\key c \major
- \set Staff.shapeNoteStyles = #'#(do re mi fa #f la ti)
+ \set Staff.shapeNoteStyles = ##(do re mi fa #f la ti)
<<
{ f'4 }
\\
{ f'4 }
>>
- \set Staff.shapeNoteStyles = #'#(do re mi faThin #f la ti)
+ \set Staff.shapeNoteStyles = ##(do re mi faThin #f la ti)
<<
{ f'4 }
\\
Index: input/regression/compound-time-signatures.ly
diff --git a/input/regression/compound-time-signatures.ly
b/input/regression/compound-time-signatures.ly
index
cbf266480929f1c0ec507c03bcb30e2abc337107..2f10281825beba9df08dcd9847ce2c73db886cba
100644
--- a/input/regression/compound-time-signatures.ly
+++ b/input/regression/compound-time-signatures.ly
@@ -16,7 +16,7 @@ as @code{\\compoundMeter #'((3 2 8))} or shorter
\relative c' {
- \override Staff.TimeSignature.break-visibility = #'#(#f #t #t)
+ \override Staff.TimeSignature.break-visibility = ##(#f #t #t)
\compoundMeter #'(1 2 3 4 8)
\repeat unfold 10 c8 \repeat unfold 20 c16 \break
Index: input/regression/easy-notation.ly
diff --git a/input/regression/easy-notation.ly
b/input/regression/easy-notation.ly
index
d8095a8d0af4faed4eaa6efe67cbcafca2ab1cf9..ef2e4532f8de0882fcad7a36c7ac03ac8228b847
100644
--- a/input/regression/easy-notation.ly
+++ b/input/regression/easy-notation.ly
@@ -11,6 +11,6 @@ You also get ledger lines, of course."
f2 e
f4 e
- \override NoteHead.note-names = #'#("U" "V" "W" "X" "Y" "Z" "z")
+ \override NoteHead.note-names = ##("U" "V" "W" "X" "Y" "Z" "z")
c2 d4 e
}
Index: input/regression/note-head-solfa.ly
diff --git a/input/regression/note-head-solfa.ly
b/input/regression/note-head-solfa.ly
index
67fffc13133b48db76d018fc9b759fdfe723aa19..2725b20e08848c8d1d335db8057cd8593c882baa
100644
--- a/input/regression/note-head-solfa.ly
+++ b/input/regression/note-head-solfa.ly
@@ -9,7 +9,7 @@ to the @code{tonic} property."
fragment = {
\key c \major
- \set shapeNoteStyles = #'#(do re mi fa sol la ti)
+ \set shapeNoteStyles = ##(do re mi fa sol la ti)
c1 d e f g a b c d e f g a b c
c,,2 d e f g a b c d e f g a b c
c,,4 d e f g a b c d e f g a b c
Index: ly/property-init.ly
diff --git a/ly/property-init.ly b/ly/property-init.ly
index
2c538ce86cb8dc0c308d67ba97c807e7902bcfb8..657d10967ba035fe7651bca760bb7e2d175fa52f
100644
--- a/ly/property-init.ly
+++ b/ly/property-init.ly
@@ -420,22 +420,22 @@ predefinedFretboardsOn =
%% shape note heads
-aikenHeads = \set shapeNoteStyles = #'#(do re miMirror fa sol la ti)
-aikenHeadsMinor = \set shapeNoteStyles = #'#(la ti do re miMirror fa sol)
+aikenHeads = \set shapeNoteStyles = ##(do re miMirror fa sol la ti)
+aikenHeadsMinor = \set shapeNoteStyles = ##(la ti do re miMirror fa sol)
funkHeads =
- \set shapeNoteStyles = #'#(doFunk reFunk miFunk faFunk solFunk laFunk
tiFunk)
+ \set shapeNoteStyles = ##(doFunk reFunk miFunk faFunk solFunk laFunk
tiFunk)
funkHeadsMinor =
- \set shapeNoteStyles = #'#(laFunk tiFunk doFunk reFunk miFunk faFunk
solFunk)
-sacredHarpHeads = \set shapeNoteStyles = #'#(fa sol la fa sol la mi)
-sacredHarpHeadsMinor = \set shapeNoteStyles = #'#(la mi fa sol la fa sol)
+ \set shapeNoteStyles = ##(laFunk tiFunk doFunk reFunk miFunk faFunk
solFunk)
+sacredHarpHeads = \set shapeNoteStyles = ##(fa sol la fa sol la mi)
+sacredHarpHeadsMinor = \set shapeNoteStyles = ##(la mi fa sol la fa sol)
southernHarmonyHeads =
- \set shapeNoteStyles = #'#(faThin sol laThin faThin sol laThin miThin)
+ \set shapeNoteStyles = ##(faThin sol laThin faThin sol laThin miThin)
southernHarmonyHeadsMinor =
- \set shapeNoteStyles = #'#(laThin miThin faThin sol laThin faThin sol)
+ \set shapeNoteStyles = ##(laThin miThin faThin sol laThin faThin sol)
walkerHeads =
- \set shapeNoteStyles = #'#(doWalker reWalker miWalker faWalker solFunk
laWalker tiWalker)
+ \set shapeNoteStyles = ##(doWalker reWalker miWalker faWalker solFunk
laWalker tiWalker)
walkerHeadsMinor =
- \set shapeNoteStyles = #'#(laWalker tiWalker doWalker reWalker miWalker
faWalker solFunk)
+ \set shapeNoteStyles = ##(laWalker tiWalker doWalker reWalker miWalker
faWalker solFunk)
%% shifts
_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-devel