]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-property.cc
* buildscripts/lilypond.words.py: remove.
[lilypond.git] / lily / grob-property.cc
index 8c0350e83a195784d3bae495fa3437d4170f7351..46d032c64f8800d0431551490084cd180eecf6ed 100644 (file)
 SCM
 Grob::get_property_alist_chain (SCM def) const
 {
-  return  scm_list_n (mutable_property_alist_,
-                     immutable_property_alist_,
-                     def,
-                     SCM_UNDEFINED);
+  return scm_list_n (mutable_property_alist_,
+                    immutable_property_alist_,
+                    def,
+                    SCM_UNDEFINED);
 }
 
 
@@ -34,7 +34,7 @@ Grob::get_property_alist_chain (SCM def) const
 
     set_prop (name,cons (thing, get_prop (name)))
 
-  since it can reuse the handle returned by scm_assq().
+  since it can reuse the handle returned by scm_assq ().
 */
 void
 Grob::add_to_list_property (SCM sym, SCM thing) 
@@ -54,7 +54,7 @@ Grob::add_to_list_property (SCM sym, SCM thing)
        mutable prop list.
       */
       handle = scm_sloppy_assq (sym, immutable_property_alist_);
-      SCM tail = (handle != SCM_BOOL_F) ? gh_cdr(handle) : SCM_EOL;
+      SCM tail = (handle != SCM_BOOL_F) ? gh_cdr (handle) : SCM_EOL;
       SCM val = gh_cons (thing, tail);
 
       mutable_property_alist_ = gh_cons (gh_cons (sym, val),
@@ -66,7 +66,7 @@ Grob::add_to_list_property (SCM sym, SCM thing)
 extern void check_interfaces_for_property (Grob const *me, SCM sym);
 
 void
-Grob::internal_set_grob_property (SCM s, SCM v)
+Grob::internal_set_property (SCM s, SCM v)
 {
   /* Perhaps we simply do the assq_set, but what the heck. */
   if (!live ())
@@ -84,7 +84,7 @@ Grob::internal_set_grob_property (SCM s, SCM v)
 
 
 SCM
-Grob::internal_get_grob_property (SCM sym) const
+Grob::internal_get_property (SCM sym) const
 {
   SCM s = scm_sloppy_assq (sym, mutable_property_alist_);
   if (s != SCM_BOOL_F)