From: Chris Hanson Date: Mon, 21 Feb 1994 21:47:46 +0000 (+0000) Subject: Eliminate another #f vs. '() bug. X-Git-Tag: 20090517-FFI~7277 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=80e2baa72b70cc4d36e703079cad35a0c0c70645;p=mit-scheme.git Eliminate another #f vs. '() bug. --- diff --git a/v7/src/edwin/rmail.scm b/v7/src/edwin/rmail.scm index f67c142a9..9b76e68fa 100644 --- a/v7/src/edwin/rmail.scm +++ b/v7/src/edwin/rmail.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: rmail.scm,v 1.30 1993/09/30 19:22:30 bal Exp $ +;;; $Id: rmail.scm,v 1.31 1994/02/21 21:47:46 cph Exp $ ;;; ;;; Copyright (c) 1991-1993 Massachusetts Institute of Technology ;;; @@ -980,9 +980,9 @@ original message into it." (strings (loop fs))) (if string (cons string - (if strings - (cons ", " strings) - '())) + (if (null? strings) + '() + (cons ", " strings))) strings)) '())))))) (and (not (null? strings))