From a10f434d10c04e905503771f55e632f04c36ad83 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Thu, 26 Sep 2013 08:30:55 -0700
Subject: [PATCH] Drop 'm' before half-diminished or diminished symbol

The chord no longer has minor quality once it's half-diminished or
diminished.  Putting the 'm' in there was just confusing.
---
 scherzo.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scherzo.c b/scherzo.c
index dbaaa61..4882cc9 100644
--- a/scherzo.c
+++ b/scherzo.c
@@ -698,9 +698,9 @@ scherzo_analyze_chord (scherzo_t *scherzo)
 	{ {{1, 0}, {3, -1}, {5, -1}, {7, -2}}, "°" SUP "7" PUS },
 	{ {{1, 0}, {2,  0}, {5,  0}, {7,  0}}, "m" SUP "M7" PUS "sus2" },
 	{ {{1, 0}, {2,  0}, {5,  0}, {7, -1}}, "m7sus2" },
-	{ {{1, 0}, {2,  0}, {5, -1}, {7,  0}}, "m°" SUP "M7" PUS "sus2" },
-	{ {{1, 0}, {2,  0}, {5, -1}, {7, -1}}, "m𝆩" SUP "7" PUS "sus2" },
-	{ {{1, 0}, {2,  0}, {5, -1}, {7, -2}}, "m°" SUP "7" PUS "sus2" },
+	{ {{1, 0}, {2,  0}, {5, -1}, {7,  0}}, "°" SUP "M7" PUS "sus2" },
+	{ {{1, 0}, {2,  0}, {5, -1}, {7, -1}}, "𝆩" SUP "7" PUS "sus2" },
+	{ {{1, 0}, {2,  0}, {5, -1}, {7, -2}}, "°" SUP "7" PUS "sus2" },
 	/* Ninth chords voiced with no 5th */
 	{ {{1, 0}, {9,  0}, {4,  0}, {7,  0}}, "M9sus" },
 	{ {{1, 0}, {9,  0}, {4,  0}, {7, -1}}, "9sus" },
-- 
2.45.2