From b060d0985c5a24506cf5c06276e440e4fe942e54 Mon Sep 17 00:00:00 2001
From: Han-Wen Nienhuys <hanwen@xs4all.nl>
Date: Wed, 5 Mar 2003 17:47:43 +0000
Subject: [PATCH] (write_fontlist): use new markup syntax

---
 ChangeLog                   | 2 ++
 buildscripts/mf-to-table.py | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 0d136aa92a..70134a8afa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-03-05  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+	* buildscripts/mf-to-table.py (write_fontlist): use new markup syntax
+
 	* python/lilylib.py (make_page_images): add function.
 
 	* scripts/ly2dvi.py (run_latex): include title in preview image.
diff --git a/buildscripts/mf-to-table.py b/buildscripts/mf-to-table.py
index 0bb63b0412..1fcdfbe558 100644
--- a/buildscripts/mf-to-table.py
+++ b/buildscripts/mf-to-table.py
@@ -161,7 +161,7 @@ def write_fontlist (file, global_info, charmetrics):
 """)
 	for m in charmetrics:
 		escapedname=re.sub('_','\\\\\\\\_', m['name'])
-		file.write ('s^#\'(lines (music \"%s\") \"%s\")\n' % (m['name'], escapedname))
+		file.write ('s^\\markup { \\musicglyph #"%s" "%s" }\n' % (m['name'], escapedname))
 	file.write (r"""
 }
   \paper{
-- 
2.39.5