]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 6 Jan 2003 23:47:36 +0000 (23:47 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 6 Jan 2003 23:47:36 +0000 (23:47 +0000)
lily/new-chord-name-engraver.cc
python/lilylib.py

index e0be6ccf72521fd8d56c60b6c29d898e8069e960..a8277908e63d28d40d68d19acfa03a332f2e4cf7 100644 (file)
@@ -87,7 +87,7 @@ New_chord_name_engraver::process_music ()
   chord_name_->set_grob_property("text", markup);
   announce_grob(chord_name_, SCM_EOL);
   SCM s = get_property ("chordChanges");
-  if (to_boolean (s) && ly_car (last_chord_) != SCM_EOL
+  if (to_boolean (s) && gh_pair_p (last_chord_) 
       && gh_equal_p (chord_as_scm, last_chord_))
     chord_name_->set_grob_property ("begin-of-line-visible", SCM_BOOL_T);
 
index f33cb6bef15a424651129ea56827728d130996be..3f0b0e7302c3a5db5bf7cc07214dc32846643e4e 100644 (file)
@@ -270,7 +270,12 @@ Exit status of CMD '''
        exit_status = status >> 8
        
        if status:
-               msg = _ ("`%s\' failed (%d)") % (name, exit_status)
+               
+               exit_type =  'status %d' % exit_status
+               if signal:
+                       exit_type = 'signal %d' % signal 
+               
+               msg = _ ("`%s\' failed (%s)") % (name, exit_type)
                if ignore_error:
                        if __main__.verbose_p:
                                warning (msg + ' ' + _ ("(ignored)"))