]> git.donarmstrong.com Git - lilypond.git/commitdiff
Merge remote branch 'origin' into release/unstable release/2.15.32-1
authorGraham Percival <graham@percival-music.ca>
Sun, 4 Mar 2012 23:37:18 +0000 (23:37 +0000)
committerGraham Percival <graham@percival-music.ca>
Sun, 4 Mar 2012 23:37:18 +0000 (23:37 +0000)
Documentation/web/community.itexi
lily/dispatcher.cc

index 918eb1012fb38071b75070f3400123730e538282..ea57aa6288530c96106d88e5f121e2bfd90c007f 100644 (file)
@@ -405,8 +405,9 @@ We may already know about this bug.  Check here:
 @uref{http://code.google.com/p/lilypond/issues/list}
 @end example
 
-@warning{Please @strong{DO NOT} add bug reports to the
-bug tracker yourself.}
+@warning{Please @strong{DO NOT} add bug reports directly to the
+bug tracker.  Once an issue has been added to the tracker, feel
+free to add more information to that report.}
 
 @divEnd
 
index 3758f46347da55032002c7555b60216149cf27ce..ad1a624b121917b67fe03bc0944cce96a0325de4 100644 (file)
@@ -58,7 +58,8 @@ Dispatcher::print_smob (SCM s, SCM p, scm_print_state *)
 {
   Dispatcher *me = (Dispatcher *) SCM_CELL_WORD_1 (s);
   scm_puts ("#<Dispatcher ", p);
-  scm_write (scm_vector_to_list (me->listeners_), p);
+  scm_write (scm_call_1 (ly_lily_module_constant ("hash-table->alist"),
+                        me->listeners_), p);
   scm_puts (">", p);
   return 1;
 }