From: hanwen <hanwen>
Date: Wed, 15 Feb 2006 13:09:15 +0000 (+0000)
Subject: *** empty log message ***
X-Git-Tag: release/2.7.38^2~138
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=adbeffa922a12f050be6bc674dbb4526aab049cd;p=lilypond.git

*** empty log message ***
---

diff --git a/ChangeLog b/ChangeLog
index 3487999f3b..b6cb5d0f77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2006-02-15  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
-	* lily/dot-column.cc (side_position): reach stem via dots-> head->stem.
+	* lily/dot-column.cc (side_position): reach stem via dots->
+	head->stem. Inspect all stems for dot collisions. 
 
 	* lily/dot-column-engraver.cc (class Dot_column_engraver): excise
 	stem handling.
diff --git a/lily/note-heads-engraver.cc b/lily/note-heads-engraver.cc
index 038a9d4a69..7b91132246 100644
--- a/lily/note-heads-engraver.cc
+++ b/lily/note-heads-engraver.cc
@@ -128,7 +128,11 @@ Note_heads_engraver::stop_translation_timestep ()
 
 ADD_TRANSLATOR (Note_heads_engraver,
 		/* doc */ "Generate noteheads.",
-		/* create */ "NoteHead Dots",
-		/* accept */ "note-event busy-playing-event",
+		/* create */
+		"NoteHead "
+		"Dots",
+		/* accept */
+		"note-event "
+		"busy-playing-event",
 		/* read */ "middleCPosition",
 		/* write */ "");
diff --git a/lily/rhythmic-head.cc b/lily/rhythmic-head.cc
index ec368b8a51..f771c75edc 100644
--- a/lily/rhythmic-head.cc
+++ b/lily/rhythmic-head.cc
@@ -55,7 +55,7 @@ ADD_INTERFACE (Rhythmic_head,
 	       "Note head or rest",
 	       
 	       "dot "
-	       "duration-log"
+	       "duration-log "
 	       "stem "
 	       );