summaryrefslogtreecommitdiffstats
path: root/src/compose/environment.rs
diff options
context:
space:
mode:
authorRory Dudley2024-06-21 15:40:49 -0400
committerRory Dudley2024-06-21 15:40:49 -0400
commite23e4a036008a6f3a3356d48434615a05dcc17e0 (patch)
treea93bfcf486db01af7efb51dd15835c3ca31bad53 /src/compose/environment.rs
parentfedd4c31b0d1c6d036b1105a74b6e6a1f135f2b4 (diff)
downloaddwarvish-e23e4a036008a6f3a3356d48434615a05dcc17e0.tar.gz
Fix capturing output for internal poems
Sometime when the switch to the new built-in command system was happening, we lost the logic to force the capture the output of STDOUT, mainly used for running internal poems (i.e. 'ls `ls`'). This patch adds a new field to the Environment struct, called fc (force capture). It gets set to true before running internal poems, and unset afterwards. Finally, some checks were added to the incant!() macro to properly handle STDOUT when fc is set.
Diffstat (limited to 'src/compose/environment.rs')
-rw-r--r--src/compose/environment.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compose/environment.rs b/src/compose/environment.rs
index 18d59c4..151c7a5 100644
--- a/src/compose/environment.rs
+++ b/src/compose/environment.rs
@@ -14,6 +14,7 @@ use std::collections::HashMap;
/// bins - A lookup table for +x files, constructed from the $PATH
/// cs - Indication of callstack level, helpful for recursively dealing with
/// aliases
+/// fc - Force the capture of stdout (for internal poems)
///
/// # Examples
/// ```
@@ -29,6 +30,7 @@ pub struct Environment {
pub aliases: HashMap<String, String>,
pub bins: Vec<String>,
pub cs: u8,
+ pub fc: bool,
}
impl Environment {
@@ -38,6 +40,7 @@ impl Environment {
aliases: HashMap::new(),
bins: Vec::new(),
cs: 0,
+ fc: false,
}
}
}