diff options
Diffstat (limited to 'src/recite')
-rw-r--r-- | src/recite/ps.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/recite/ps.rs b/src/recite/ps.rs index bb18b3f..0738057 100644 --- a/src/recite/ps.rs +++ b/src/recite/ps.rs @@ -1,4 +1,3 @@ -#[macro_export] /// Fork into a process from a Verse /// /// Figures out whether or not the given Verse is a couplet. If it is, fork @@ -8,6 +7,7 @@ /// # Arguments /// * `$verse: &Verse` - The verse to fork into /// * `$out: &mut String` - If the $verse is a couplet, the contents of STDOUT from the last verse +#[macro_export] macro_rules! task { ($verse:expr, $out:expr) => { if $verse.couplet { @@ -37,7 +37,7 @@ macro_rules! task { /// # Arguments /// * `$verse: &Verse` - The verse to fork into /// * `$out: &mut String` - If the $verse is a couplet, the contents of STDOUT from the last verse -#[macro_export()] +#[macro_export] macro_rules! ctask { ($verse:expr, $out:expr) => { if $verse.couplet { |