summaryrefslogtreecommitdiffstats
path: root/src/poem/anthology/source.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/poem/anthology/source.rs')
-rw-r--r--src/poem/anthology/source.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/poem/anthology/source.rs b/src/poem/anthology/source.rs
index 43d6204..3c81110 100644
--- a/src/poem/anthology/source.rs
+++ b/src/poem/anthology/source.rs
@@ -42,9 +42,7 @@ pub fn incant(verse: &Verse, out: &mut Vec<u8>, env: &mut Environment) -> i32 {
}
};
- let stdout = if verse.couplet { Some(true) } else { None };
-
- *out = match poem.recite(env, stdout) {
+ *out = match poem.recite(env) {
Ok(out) => out,
Err(e) => {
eprintln!("dwvsh: {}", e.to_string().to_lowercase());