]> git.donarmstrong.com Git - lilypond.git/commitdiff
(First steps): change example
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 17 Mar 2006 15:45:34 +0000 (15:45 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 17 Mar 2006 15:45:34 +0000 (15:45 +0000)
to verbatim.

ChangeLog
Documentation/user/tutorial.itely
python/lilylib.py

index 2d1adface9ce8811e5b802b04852342a923985ea..1e4c10f95f53209e3aa7cfd8059c6e333cd97b05 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * Documentation/user/tutorial.itely (First steps): change example
+       to verbatim.  
+
 2006-03-17  Graham Percival  <gpermus@gmail.com>
 
        * Documentation/user/ examples, advanced: minor changes from mailist.
@@ -6,6 +11,8 @@
 
 2006-03-17  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * python/lilylib.py (system): revert have_select kludge.
+
        * Documentation/user/tutorial.itely (Commenting input files):
        update version numbers in doc. 
 
index ec47f19127edb2b53269b44811b5778108ff3c8a..8fa82e1fc1f0c340ea9af4bacfa159072d2ad991 100644 (file)
@@ -237,9 +237,9 @@ programmer-oriented editor will do, for example Notepad.  Do not use a
 word processor, since these insert formatting codes that will confuse
 LilyPond.} and enter
 
-@example
-@{ c'4 e' g' @}
-@end example
+@verbatim
+{ c'4 e' g' }
+@end verbatim
 
 Save it on the desktop as @file{test.ly} and make sure that it is not
 called @file{test.ly.TXT}.  Double clicking @file{test.ly} will process
@@ -256,9 +256,9 @@ installed already, refer to the file @file{INSTALL.txt}.}  In your
 text editor, enter the following input and save the file as
 @file{test.ly}
 
-@example
-@{ c'4 e' g' @}
-@end example
+@verbatim
+{ c'4 e' g' }
+@end verbatim
 
 @noindent
 To process @file{test.ly}, proceed as follows
index 23d268f6206dc39cdf4589fad9ea6b036430db04..5ce5b298480c31456a12f2d17fa1f598a62461e9 100644 (file)
@@ -17,11 +17,11 @@ import optparse
 import subprocess
 
 ## windows mingw cross compile doesn't have selectmodule.so
-have_select = True
+have_fcntl = True
 try:
-       import select
+       import fcntl
 except ImportError:
-       have_select = False
+       have_fcntl = False
        
 ################################################################
 # Users of python modules should include this snippet
@@ -96,9 +96,6 @@ def system (cmd,
 
        log = ''
 
-       if not have_select:
-               show_progress = True
-
        if show_progress:
                retval = proc.wait()
        else: