From d396bf0c98fc57d8b1563c9df7dcfb6a89856c79 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Thu, 2 Aug 2012 10:39:10 +0200 Subject: [PATCH] Unquote some dashed identifiers in assignments. --- input/regression/safe.ly | 7 +++---- ly/music-functions-init.ly | 4 ++-- ly/string-tunings-init.ly | 4 ++-- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/input/regression/safe.ly b/input/regression/safe.ly index b57f16fda9..0211ffa6c1 100644 --- a/input/regression/safe.ly +++ b/input/regression/safe.ly @@ -1,12 +1,12 @@ -\version "2.14.0" +\version "2.15.42" -"expect-error" = ##t +expect-error = ##t % Ugh - this affects other files too. #(ly:set-option 'protected-scheme-parsing #t) #(ly:set-option 'safe #t) -"force-finish" = ##t +force-finish = ##t \header{ texidoc = "This should not survive lilypond --safe-mode" @@ -18,4 +18,3 @@ #(open-file "/tmp/safe-guile.scm") \include "this-should-fail.ly" - diff --git a/ly/music-functions-init.ly b/ly/music-functions-init.ly index 95bf9ce08a..9544346db3 100644 --- a/ly/music-functions-init.ly +++ b/ly/music-functions-init.ly @@ -18,7 +18,7 @@ %%%% You should have received a copy of the GNU General Public License %%%% along with LilyPond. If not, see . -\version "2.15.18" +\version "2.15.42" %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -36,7 +36,7 @@ acciaccatura = (_i "Create an acciaccatura from the following music expression")) %% keep these two together -"instrument-definitions" = #'() +instrument-definitions = #'() addInstrumentDefinition = #(define-void-function (parser location name lst) (string? list?) diff --git a/ly/string-tunings-init.ly b/ly/string-tunings-init.ly index a003a1e492..7169452e16 100644 --- a/ly/string-tunings-init.ly +++ b/ly/string-tunings-init.ly @@ -15,7 +15,7 @@ %%%% You should have received a copy of the GNU General Public License %%%% along with LilyPond. If not, see . -\version "2.15.16" +\version "2.15.42" %% A stringTuning is a list of pitches ordered by string number %% from 1 to N. @@ -87,5 +87,5 @@ for documentation purposes.") defaultStringTunings = #(reverse! defaultStringTunings) %% convert 5-string banjo tuning to 4-string by removing the 5th string -"four-string-banjo" = #(lambda (tuning) +four-string-banjo = #(lambda (tuning) (take tuning 4)) -- 2.39.5