From c9bd438d1806f8dc884f4a09f0801940cdbc0063 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 13 Aug 2015 06:51:44 -0700 Subject: [PATCH] io.launcher: fix bad refactor. --- basis/io/launcher/launcher.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/io/launcher/launcher.factor b/basis/io/launcher/launcher.factor index 216085a163..61f4dfe149 100755 --- a/basis/io/launcher/launcher.factor +++ b/basis/io/launcher/launcher.factor @@ -135,7 +135,7 @@ M: process-was-killed error. : (wait-for-process) ( process -- status ) dup handle>> [ self over processes get at push "process" suspend drop ] when - dup killed>> [ throw process-was-killed ] [ status>> ] if ; + dup killed>> [ throw-process-was-killed ] [ status>> ] if ; : wait-for-process ( process -- status ) [ (wait-for-process) ] with-timeout ;