2003-03-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+ * input/regression/beam-manual-beaming.ly (texidoc): new file.
+
* lily/sequential-iterator.cc (descend_to_child): call
descend_to_child() for all types of music.
--- /dev/null
+\header {
+texidoc =
+"Beaming can be overidden for individual stems."
+}
+\score {
+\notes \relative c'' {
+ [c32 c
+
+
+%% WARNING: #'beaming is written, so this
+%% property can not be shared between objects. Always use
+%% \once.
+%%
+
+
+ \once \property Voice.Stem \override
+ #'beaming = #(cons (list 1 2) (list 0 2 4))
+c
+ \once \property Voice.Stem \override
+ #'beaming = #(cons (list 0 2 4) (list 0 1 4))
+c c c]
+}
+\paper{ linewidth = -1.0 }
+}