From f4f16eccc2520f0a6adca0580cb717344aced95e Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 27 Oct 2002 17:27:25 +0000 Subject: [PATCH] (%thread-handler): Explicitely return '#f'. This value will be returned by join-thread. --- ice-9/threads.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ice-9/threads.scm b/ice-9/threads.scm index 42dc38d96..fbbb029c7 100644 --- a/ice-9/threads.scm +++ b/ice-9/threads.scm @@ -85,7 +85,8 @@ (display tag p) (display ": " p) (display args p) - (newline p))))) + (newline p))) + #f)) ; --- MACROS -------------------------------------------------------