]> git.donarmstrong.com Git - lilypond.git/commitdiff
Doc: Extending - @ignore for inline scheme coding
authorJames Lowe <pkx166h@gmail.com>
Mon, 6 Jan 2014 07:07:08 +0000 (07:07 +0000)
committerJames Lowe <pkx166h@gmail.com>
Mon, 6 Jan 2014 07:08:52 +0000 (07:08 +0000)
Issue 1999

Added @ignore for what was 2.8 'Inline Scheme Code' as the
current example is technically incorrect and finding/writing a
non-trivial example (to make the documenting of it worthwhile
in the first place) is 'rather hard'.

Documentation/extending/programming-interface.itely

index 945a44aefe12fa3ed930d6b5a95d3174b07819b1..528e75b8b9d3c353792764f5443af303f190d4f3 100644 (file)
@@ -25,7 +25,6 @@ not familiar with Scheme, you may wish to read our
 * Markup functions::
 * Contexts for programmers::
 * Callback functions::
-* Inline Scheme code::
 * Difficult tweaks::
 @end menu
 
@@ -1304,8 +1303,10 @@ my-callback = #(lambda (grob)
                  (grob-interpret-markup grob (markup "foo")))
 @end example
 
-@node Inline Scheme code
-@section Inline Scheme code
+@ignore
+
+@n ode Inline Scheme code
+@s ection Inline Scheme code
 
 TODO: after this section had been written, LilyPond has improved
 to the point that finding a @emph{simple} example where one would
@@ -1352,6 +1353,7 @@ font size is prepended to the property list with the
 written back with @code{set!}.  The last element of the
 @code{let} block is the return value, @code{m} itself.
 
+@end ignore
 
 
 @node Difficult tweaks