]> git.donarmstrong.com Git - lilypond.git/commitdiff
Merge remote branch 'origin/master' into release/unstable release/2.19.23-1
authorPhil Holmes <mail@philholmes.net>
Sun, 12 Jul 2015 15:38:36 +0000 (16:38 +0100)
committerPhil Holmes <mail@philholmes.net>
Sun, 12 Jul 2015 15:38:36 +0000 (16:38 +0100)
lily/lily-modules.cc

index b5b61ee6bb27d0ae2638a5ebeda5e100291c4a0d..be736615d6e25e1d3f24e64ed4761edbebf86a20 100644 (file)
@@ -68,21 +68,21 @@ void
 Scm_module::import ()
 {
   assert (SCM_UNBNDP (module_));
-  SCM interface = scm_c_resolve_module (name_);
+  SCM intrface = scm_c_resolve_module (name_);
   // Using only the public interface is a voluntary form of access
   // control in GUILE.  It would be cumbersome to do so until
   // Guile_user itself is imported.
   if (SCM_MODULEP (Guile_user::module.module_))
-    interface = Guile_user::module_public_interface (interface);
+    intrface = Guile_user::module_public_interface (intrface);
   for (Variable_record *p = variables_; p;)
     {
       Variable_record *next = p->next_;
-      p->var_->import (interface, p->name_);
+      p->var_->import (intrface, p->name_);
       delete p;
       p = next;
     }
   variables_ = 0;
-  module_ = interface;
+  module_ = intrface;
 }
 
 void