From f9f17cead3713b491c291cc26de540fbf44ceed1 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Wed, 25 Sep 2013 20:17:00 -0700
Subject: [PATCH] Add some flat-5 variants of 9th chords

I also noticed these when reading the following about 11th chords:

	Omission of the 5th in a sharpened 11th chord reduces its
	sound to a flat-five chord.

	[http://en.wikipedia.org/wiki/Chord_notation#11ths]
---
 scherzo.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scherzo.c b/scherzo.c
index 522f369..c56e18b 100644
--- a/scherzo.c
+++ b/scherzo.c
@@ -720,11 +720,15 @@ scherzo_analyze_chord (scherzo_t *scherzo)
 
 	{ {{1, 0}, {9,  0}, {3,  0}, {5, +1}, {7,  0}}, SUP "+M9" PUS },
 	{ {{1, 0}, {9,  0}, {3,  0}, {5, +1}, {7, -1}}, SUP "+9" PUS },
+
 	{ {{1, 0}, {9,  0}, {3,  0}, {5,  0}, {7,  0}}, "M9" },
 	{ {{1, 0}, {9,  0}, {3,  0}, {5,  0}, {7, -1}}, "9" },
 	{ {{1, 0}, {9,  0}, {3, -1}, {5,  0}, {7,  0}}, "m" SUP "M9" PUS },
 	{ {{1, 0}, {9,  0}, {3, -1}, {5,  0}, {7, -1}}, "m9" },
 	{ {{1, 0}, {9, -1}, {3, -1}, {5,  0}, {7, -1}}, "m♭9" },
+	{ {{1, 0}, {9,  0}, {3,  0}, {5, -1}, {7,  0}}, "M9" SUP "♭5" PUS },
+	{ {{1, 0}, {9,  0}, {3,  0}, {5, -1}, {7, -1}}, "9" SUP "♭5" PUS },
+	{ {{1, 0}, {9,  0}, {3, -1}, {5, -1}, {7,  0}}, "m" SUP "M9♭5" PUS },
 	{ {{1, 0}, {9,  0}, {3, -1}, {5, -1}, {7, -1}}, "𝆩" SUP "9" PUS },
 
 	/* FIXME: I don't have names for these last three after
-- 
2.45.2