aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-08-12 17:02:01 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-08-12 17:02:01 +0200
commit6ba11bdaca1721fb4591819604c340d147798f45 (patch)
treeef602b518043c0a7228e76d9d00bee95a17798d4 /src/state.rs
parent504729a4a0c8f3e0d8fc9159e0273150b169e184 (diff)
downloadmarkdown-rs-6ba11bdaca1721fb4591819604c340d147798f45.tar.gz
markdown-rs-6ba11bdaca1721fb4591819604c340d147798f45.tar.bz2
markdown-rs-6ba11bdaca1721fb4591819604c340d147798f45.zip
Remove `match` statements if clumsy
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/state.rs b/src/state.rs
index 190683c..01530c7 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -75,7 +75,6 @@ pub enum Name {
CodeIndentedAfter,
CodeIndentedFurtherStart,
CodeIndentedInside,
- CodeIndentedFurtherEnd,
CodeIndentedFurtherBegin,
CodeIndentedFurtherAfter,
@@ -358,7 +357,6 @@ pub fn call(tokenizer: &mut Tokenizer, name: Name) -> State {
Name::CodeIndentedAfter => construct::code_indented::after,
Name::CodeIndentedFurtherStart => construct::code_indented::further_start,
Name::CodeIndentedInside => construct::code_indented::inside,
- Name::CodeIndentedFurtherEnd => construct::code_indented::further_end,
Name::CodeIndentedFurtherBegin => construct::code_indented::further_begin,
Name::CodeIndentedFurtherAfter => construct::code_indented::further_after,