aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/macros.rs
diff options
context:
space:
mode:
authorTim Kuehn <tkuehn@cmu.edu>2013-09-24 00:02:48 -0400
committerTim Kuehn <tkuehn@cmu.edu>2013-09-24 00:15:35 -0400
commit103cd6255d03f22fb8cc931a160d8601644cc35f (patch)
treece7a37c46af67b27192c62a33679cb8a77995b1b /src/components/main/macros.rs
parent99f125bb644db6eabef4ee282010db995be7d4eb (diff)
downloadservo-103cd6255d03f22fb8cc931a160d8601644cc35f.tar.gz
servo-103cd6255d03f22fb8cc931a160d8601644cc35f.zip
split script_task::ExitMsg into WindowExitMsg and PipelineExitMsg
Diffstat (limited to 'src/components/main/macros.rs')
-rw-r--r--src/components/main/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/macros.rs b/src/components/main/macros.rs
index ed7ec2d2f15..9f364c48f74 100644
--- a/src/components/main/macros.rs
+++ b/src/components/main/macros.rs
@@ -5,7 +5,7 @@
macro_rules! special_stream(
($Chan:ident) => (
{
- let (port, chan) = comm::stream::();
+ let (port, chan) = stream::();
(port, $Chan::new(chan))
}
);