From e305ea9c90e8295ae63a0e70bef8c2f2c14a8500 Mon Sep 17 00:00:00 2001 From: mhb Date: Sat, 25 Apr 2009 03:37:52 +0000 Subject: [PATCH] Punt the usual start_scheme announcements when --version or --help is among the machine options. --- v7/src/microcode/boot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/boot.c b/v7/src/microcode/boot.c index db64c8df8..f58345921 100644 --- a/v7/src/microcode/boot.c +++ b/v7/src/microcode/boot.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: boot.c,v 9.130 2008/01/30 20:02:11 cph Exp $ +$Id: boot.c,v 9.131 2009/04/25 03:37:52 mhb Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -230,7 +230,7 @@ start_scheme (void) { SCHEME_OBJECT expr; - if (!option_batch_mode) + if (!option_batch_mode && !option_show_version && !option_show_help) { outf_console ("MIT/GNU Scheme running under %s\n", OS_Variant); OS_announcement (); -- 2.25.1