]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/pointer-group-interface-scheme.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / pointer-group-interface-scheme.cc
index 53fe7b20971f2cea645f33f0e99ac962a94db99d..0c786f4488a46a56c0ca0caa19d5ae8784d1a193 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2010--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 2010--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 #include "grob.hh"
 
 LY_DEFINE (ly_pointer_group_interface__add_grob, "ly:pointer-group-interface::add-grob",
-          3, 0, 0, (SCM grob, SCM sym, SCM grob_element),
-          "Add @var{grob-element} to @var{grob}'s @var{sym} grob array.")
+           3, 0, 0, (SCM grob, SCM sym, SCM grob_element),
+           "Add @var{grob-element} to @var{grob}'s @var{sym} grob array.")
 {
   LY_ASSERT_TYPE (unsmob_grob, grob, 1);
   LY_ASSERT_TYPE (ly_is_symbol, sym, 2);
   LY_ASSERT_TYPE (unsmob_grob, grob_element, 3);
 
   Pointer_group_interface::add_grob (unsmob_grob (grob),
-                                    sym,
-                                    unsmob_grob (grob_element));
+                                     sym,
+                                     unsmob_grob (grob_element));
   return SCM_UNSPECIFIED;
 }