CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Han-Wen Nienhuys <[EMAIL PROTECTED]>    05/05/18 13:35:17

Modified files:
        lily           : function-documentation.cc 

Log message:
        (ly_add_function_documentation):
        use scm_hash_table_p() for checking.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/lily/function-documentation.cc.diff?tr1=1.18&tr2=1.19&r1=text&r2=text

Patches:
Index: lilypond/lily/function-documentation.cc
diff -u lilypond/lily/function-documentation.cc:1.18 
lilypond/lily/function-documentation.cc:1.19
--- lilypond/lily/function-documentation.cc:1.18        Sun May  8 23:17:49 2005
+++ lilypond/lily/function-documentation.cc     Wed May 18 13:35:17 2005
@@ -21,7 +21,7 @@
   if (!strlen (doc))
     return;
 
-  if (!scm_is_vector (doc_hash_table))
+  if (scm_hash_table_p (doc_hash_table) == SCM_BOOL_T)
     doc_hash_table = scm_c_make_hash_table (59);
 
   String s = String (" - ") + "LilyPond procedure: " + fname + " " + varlist


_______________________________________________
Lilypond-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to