added more matches for lesbian 7-stripe variant
This commit is contained in:
parent
0670e3796c
commit
9bac43bf5d
3 changed files with 6 additions and 4 deletions
|
@ -55,7 +55,7 @@ The 5-stripe lesbian pride flag designed by Emily Gwen in 2018.
|
||||||
.Pp
|
.Pp
|
||||||
VARIANTS
|
VARIANTS
|
||||||
.Bl -tag -width Ds -compact
|
.Bl -tag -width Ds -compact
|
||||||
.It Ic 7-color
|
.It Ic 7, 7-color, 7-stripe
|
||||||
The 7-stripe lesbian pride flag designed by Emily Gwen in 2018.
|
The 7-stripe lesbian pride flag designed by Emily Gwen in 2018.
|
||||||
.El
|
.El
|
||||||
.It Ic multisexual, m-spec, mspec
|
.It Ic multisexual, m-spec, mspec
|
||||||
|
|
|
@ -130,7 +130,7 @@ names:
|
||||||
=> { println!("The gender-nonconforming pride flag.\n\nnames:\n 'gender-nonconforming', 'gendernonconforming', 'gnc'"); },
|
=> { println!("The gender-nonconforming pride flag.\n\nnames:\n 'gender-nonconforming', 'gendernonconforming', 'gnc'"); },
|
||||||
|
|
||||||
|
|
||||||
"lesbian"
|
"lesbian" | "wlw"
|
||||||
=> {
|
=> {
|
||||||
println!("The 5-stripe lesbian flag designed by Emily Gwen in 2018.
|
println!("The 5-stripe lesbian flag designed by Emily Gwen in 2018.
|
||||||
|
|
||||||
|
@ -138,7 +138,9 @@ names:
|
||||||
'lesbian', 'wlw'
|
'lesbian', 'wlw'
|
||||||
|
|
||||||
variants:
|
variants:
|
||||||
7-color 7-stripe flag, also designed in 2018 by Emily Gwen");
|
7 7-stripe flag, also designed in 2018 by Emily Gwen
|
||||||
|
7-color
|
||||||
|
7-stripe");
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -140,7 +140,7 @@ fn main() {
|
||||||
Some("lesbian" | "wlw")
|
Some("lesbian" | "wlw")
|
||||||
=> {
|
=> {
|
||||||
match variant.as_deref() {
|
match variant.as_deref() {
|
||||||
Some("7-color")
|
Some("7" | "7-color" | "7-stripe")
|
||||||
=> variant::lesbian_7(),
|
=> variant::lesbian_7(),
|
||||||
_
|
_
|
||||||
=> flag::lesbian()
|
=> flag::lesbian()
|
||||||
|
|
Loading…
Reference in a new issue