From owner-freebsd-current Thu Apr 6 08:13:35 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id IAA29344 for current-outgoing; Thu, 6 Apr 1995 08:13:35 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id IAA29331 for ; Thu, 6 Apr 1995 08:13:26 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id BAA24533; Fri, 7 Apr 1995 01:10:00 +1000 Date: Fri, 7 Apr 1995 01:10:00 +1000 From: Bruce Evans Message-Id: <199504061510.BAA24533@godzilla.zeta.org.au> To: freebsd-current@FreeBSD.org, nnd@gw.itfs.nsk.su Subject: Re: PERL4&5 broken in -current and 950322-SNAP! Sender: current-owner@FreeBSD.org Precedence: bulk > This is very strange but on FreeBSD-1.1.5.1, FreeBSD-2.0-950210-SNAP, >SunOS 4.1.3 and ISC 3.0 my test program prints: >1 >0 >and only on FreeBSD-current I see: >1 >0. >(Test program : >main() >{ >char b[256]; >sprintf(b,"%g",1.0); >printf("%s\n",b); >sprintf(b,"%g",0.0); >printf("%s\n",b); >} It looks like I was too creative editing the 1.1.5 changes for -current :-(. "0." is only correct for "%#g". I will fix this soon. Bruce