]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/context-mod-scheme.cc
Fix 1598.
[lilypond.git] / lily / context-mod-scheme.cc
index 245749604af8e65c7d818f83a0c1c5ba836396f6..b993a7de8f33e6e728b713ae49dbf974828513df 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2010 Jan Nieuwenhuizen <janneke@gnu.org>
+  Copyright (C) 2010--2011 Jan Nieuwenhuizen <janneke@gnu.org>
   Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
 #include "context-mod.hh"
 
 LY_DEFINE (ly_get_context_mods,
-          "ly:get-context-mods",
-          1, 0, 0, (SCM contextmod),
-          "Returns the list of context modifications stored in @var{contextmod}.")
+           "ly:get-context-mods",
+           1, 0, 0, (SCM contextmod),
+           "Returns the list of context modifications stored in"
+           " @var{contextmod}.")
 {
   Context_mod *tr = unsmob_context_mod (contextmod);
   LY_ASSERT_SMOB (Context_mod, contextmod, 1);
@@ -32,9 +33,10 @@ LY_DEFINE (ly_get_context_mods,
 }
 
 LY_DEFINE (ly_add_context_mod,
-          "ly:add-context-mod",
-          2, 0, 0, (SCM contextmods, SCM modification),
-          "Adds the given context @var{modification} to the list @var{contextmods} of context modifications.")
+           "ly:add-context-mod",
+           2, 0, 0, (SCM contextmods, SCM modification),
+           "Adds the given context @var{modification} to the list"
+           " @var{contextmods} of context modifications.")
 {
   Context_mod *ctxmod = unsmob_context_mod (contextmods);
   LY_ASSERT_SMOB (Context_mod, contextmods, 1);