CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Han-Wen Nienhuys <[EMAIL PROTECTED]>    05/05/18 14:46:38

Modified files:
        .              : ChangeLog 
        lily           : function-documentation.cc 
        make           : lilypond-vars.make 

Log message:
        * lily/function-documentation.cc (ly_add_function_documentation):
        duh, use !=
        
        * lily/function-documentation.cc (ly_add_function_documentation):
        use scm_hash_table_p() for checking.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3632&tr2=1.3633&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/lily/function-documentation.cc.diff?tr1=1.19&tr2=1.20&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/make/lilypond-vars.make.diff?tr1=1.61&tr2=1.62&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.3632 lilypond/ChangeLog:1.3633
--- lilypond/ChangeLog:1.3632   Wed May 18 14:35:26 2005
+++ lilypond/ChangeLog  Wed May 18 14:46:36 2005
@@ -1,5 +1,8 @@
 2005-05-18  Han-Wen Nienhuys  <[EMAIL PROTECTED]>
 
+       * lily/function-documentation.cc (ly_add_function_documentation):
+       duh, use !=
+
        * Documentation/topdocs/INSTALL.texi (Top): add MacOS command.
 
        * stepmake/aclocal.m4: remove kpathsea warning, change to OPTIONAL.
Index: lilypond/lily/function-documentation.cc
diff -u lilypond/lily/function-documentation.cc:1.19 
lilypond/lily/function-documentation.cc:1.20
--- lilypond/lily/function-documentation.cc:1.19        Wed May 18 13:35:17 2005
+++ lilypond/lily/function-documentation.cc     Wed May 18 14:46:37 2005
@@ -21,7 +21,7 @@
   if (!strlen (doc))
     return;
 
-  if (scm_hash_table_p (doc_hash_table) == SCM_BOOL_T)
+  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
Index: lilypond/make/lilypond-vars.make
diff -u lilypond/make/lilypond-vars.make:1.61 
lilypond/make/lilypond-vars.make:1.62
--- lilypond/make/lilypond-vars.make:1.61       Mon Apr 18 13:35:13 2005
+++ lilypond/make/lilypond-vars.make    Wed May 18 14:46:38 2005
@@ -18,7 +18,7 @@
 LILYPOND = $(builddir)/lily/$(outconfbase)/lilypond
 LILYPOND_BOOK = $(script-dir)/lilypond-book.py
 LILYPOND_BOOK_INCLUDES = -I $(pwd) -I $(outdir) -I$(input-dir) -I 
$(input-dir)/regression/ -I $(input-dir)/test/ -I $(input-dir)/tutorial/ -I 
$(builddir)/mf/$(outconfbase)/  -I $(builddir)/mf/out/
-LILYPOND_BOOK_FLAGS = --process="lilypond --backend=eps --formats=ps,png 
--header=texidoc -I $(srcdir)/input/test -e '(ly:set-option (quote 
internal-type-checking) \#t)'"
+LILYPOND_BOOK_FLAGS = --process="$(LILYPOND) --backend=eps --formats=ps,png 
--header=texidoc -I $(srcdir)/input/test -e '(ly:set-option (quote 
internal-type-checking) \#t)'"
 
 
 #texi-html for www only:


_______________________________________________
Lilypond-cvs mailing list
Lilypond-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to