]> git.donarmstrong.com Git - lilypond.git/commitdiff
Unquote some dashed identifiers in assignments.
authorDavid Kastrup <dak@gnu.org>
Thu, 2 Aug 2012 08:39:10 +0000 (10:39 +0200)
committerDavid Kastrup <dak@gnu.org>
Sun, 5 Aug 2012 23:46:20 +0000 (01:46 +0200)
input/regression/safe.ly
ly/music-functions-init.ly
ly/string-tunings-init.ly

index b57f16fda9a3a168458c6e42c8bad4e73b9891e6..0211ffa6c1304331684bf12207d5613a165244fe 100644 (file)
@@ -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"
-
index 95bf9ce08a02db560bbd0f284615ddf7eaaa5a52..9544346db3f690a06a1a1ece67b3f4f244f3f908 100644 (file)
@@ -18,7 +18,7 @@
 %%%% You should have received a copy of the GNU General Public License
 %%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 
-\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?)
index a003a1e4921de89a27d6fe97c75215c801d6a82b..7169452e16c382de5c9faefc16923b99a41dd8db 100644 (file)
@@ -15,7 +15,7 @@
 %%%% You should have received a copy of the GNU General Public License
 %%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 
-\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))