From bd6a93f92a2998379cdc553f602ae9f2193ce403 Mon Sep 17 00:00:00 2001 From: Scott Tringali Date: Wed, 28 Dec 2005 22:19:49 +0000 Subject: [PATCH] Fix incorrect reporting of bad vs. unknown. --- source/help.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/help.c b/source/help.c index f65c510..2852c53 100644 --- a/source/help.c +++ b/source/help.c @@ -1,4 +1,4 @@ -static const char CVSID[] = "$Id: help.c,v 1.104 2005/02/12 01:53:19 tringali Exp $"; +static const char CVSID[] = "$Id: help.c,v 1.105 2005/12/28 22:19:49 tringali Exp $"; /******************************************************************************* * * * help.c -- Nirvana Editor help display * @@ -242,7 +242,7 @@ static const char *getBuildInfo(void) "StaticColor", "PseudoColor", "TrueColor", "DirectColor"}; - static const char *const stabilities[] = {"", "(Known Bad) ", "(Untested) "}; + static const char *const stabilities[] = {"", "(Untested) ", "(Known Bad) "}; if (bldInfoString == NULL) { -- 2.11.4.GIT