]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/scm-hash.cc
* scripts/musicxml2ly.py (convert): add \version
[lilypond.git] / lily / scm-hash.cc
index 91a4795bf875668adc8dedda23be14e446e0c143..cf0637a24f35352288f8bd327def99144548d91d 100644 (file)
@@ -3,18 +3,17 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1999--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "scm-hash.hh"
 
 #include <cstdio>
 #include <algorithm>
+using namespace std;
 
 #include "ly-smobs.icc"
 
-using namespace std; 
-
 /*
   Return: number of objects.
 */
@@ -84,8 +83,8 @@ Scheme_hash_table::print_smob (SCM s, SCM p, scm_print_state*)
 }
 
 bool
-Scheme_hash_table::try_retrieve (SCM k, SCM *v)
-{
+Scheme_hash_table::try_retrieve (SCM k, SCM *v){
+
   SCM handle = scm_hashq_get_handle (hash_tab_, k);
   if (scm_is_pair (handle))
     {