]> git.donarmstrong.com Git - lilypond.git/commitdiff
release commit
authorhanwen <hanwen>
Thu, 14 Apr 2005 10:06:04 +0000 (10:06 +0000)
committerhanwen <hanwen>
Thu, 14 Apr 2005 10:06:04 +0000 (10:06 +0000)
ChangeLog
Documentation/user/lilypond-book.itely
ly/init.ly
scripts/convert-ly.py

index 54b50729b6e30f8e06d0a84444a9b8369464a98d..506fac9c6d6f8de3cfcf2c8f27d2ef1e46f157cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-04-14  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * Documentation/user/lilypond-book.itely (Invoking lilypond-book):
+       only put xrefs in info documentation.
+
        * make/ly-rules.make ($(outdir)/%.html.omf): transplant .dvi ->
        .pdf rule to tex-rules.make.
 
index 6cbd7583d82fd6df2d8b9f6c0aa5b742fd128cc2..d5a1871a3523762859303b2dda99507b6a391534 100644 (file)
@@ -552,9 +552,16 @@ ps2pdf yourfile.ps
 
 To produce a Texinfo document (in any output format), follow the normal
 procedures for Texinfo (this is, either call @command{texi2dvi} or
-@command{makeinfo}, depending on the output format you want to create).
+@command{makeinfo}, depending on the output format you want to
+create).
+@ifinfo
 @xref{Format with texi2dvi, , , texinfo, GNU Texinfo}, and @ref{Creating
 an Info File, , , texinfo, GNU Texinfo}.
+@end ifinfo
+@ifnotinfo
+See the documentation of Texinfo for further details.
+@end ifnotinfo
+
 
 @command{lilypond-book} accepts the following command line options:
 
index 8fa1a1ad0cae63b73b5dcba9a3dca6c586e6c9af..04fa98748391acb1a11c0388fc4a9cc94f6c2718 100644 (file)
@@ -27,7 +27,7 @@
 #(if (and (ly:get-option 'old-relative)
       (defined? 'input-file-name)
       (not (ly:get-option 'old-relative-used)))
-  (ly:warn (string-append
+  (ly:warning (string-append
            "\n"
            input-file-name ": old relative compatibility was not used."
        )))%% there is a problem at the end of the input file
index 43935d40866cccdda61e60074f544fcf0d3a06d9..870310f6a234ddfa5a407ae55890287aa6a5b514 100644 (file)
@@ -2467,7 +2467,14 @@ conversions.append (((2, 5, 17),
                     conv,
                     'ly:stencil-set-extent! removed'))
                    
+def conv (str):
+       str = re.sub (r"ly:warn\b", 'ly:warning', str)
+       return str
 
+conversions.append (((2, 5, 18),
+                    conv,
+                    'ly:warn -> ly:warning'))
+                   
 ################################
 #      END OF CONVERSIONS
 ################################