Hello. This could be caused by latest commit 1393f1d1 (or could not)

In out/share/lilypond/current/scm/chord-ignatzek-names.scm:
 186: 19  [list (#<procedure simple-markup (layout props str)> "/") ...
 186: 20* [note-name->markup #<Pitch d' >]

out/share/lilypond/current/scm/chord-ignatzek-names.scm:186:38: In
procedure note-name->markup in expression (name-note bass-pitch):
out/share/lilypond/current/scm/chord-ignatzek-names.scm:186:38: Wrong
number of arguments to #<procedure note-name->markup (pitch
lowercase?)>

The call is  (name-note bass-pitch), where an argument is missing IMO
scm/chord-ignaztek-names.scm, line 186

A solution could be the attached [untested] patch.

Thanks
-- 
Francisco Vila. Badajoz (Spain)
www.paconet.org , www.csmbadajoz.com
From c647b8e4b1bb048285bb064cc5476479fc36db72 Mon Sep 17 00:00:00 2001
From: Francisco Vila <francisco.v...@hispalinux.es>
Date: Tue, 1 Jun 2010 11:51:18 +0200
Subject: [PATCH] Fix compile.

---
 scm/chord-ignatzek-names.scm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scm/chord-ignatzek-names.scm b/scm/chord-ignatzek-names.scm
index 161288a..b142692 100644
--- a/scm/chord-ignatzek-names.scm
+++ b/scm/chord-ignatzek-names.scm
@@ -183,7 +183,7 @@ work than classifying the pitches."
 				 suffixes
 				 add-markups) sep))
 	   (base-stuff (if (ly:pitch? bass-pitch)
-			   (list sep (name-note bass-pitch))
+			   (list sep (name-note bass-pitch #f))
 			   '())))
 
       (set! base-stuff
-- 
1.7.0.4

_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to