From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,81bb2ce65a3240c3 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.195.131 with SMTP id ie3mr2633467pbc.8.1335910020507; Tue, 01 May 2012 15:07:00 -0700 (PDT) Path: r9ni121115pbh.0!nntp.google.com!news1.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Adam Beneschan Newsgroups: comp.lang.ada Subject: Re: What would you like in Ada202X? Date: Tue, 1 May 2012 15:05:05 -0700 (PDT) Organization: http://groups.google.com Message-ID: <27237299.27.1335909906091.JavaMail.geo-discussion-forums@vbmh6> References: NNTP-Posting-Host: 66.126.103.122 Mime-Version: 1.0 X-Trace: posting.google.com 1335910020 9637 127.0.0.1 (1 May 2012 22:07:00 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 1 May 2012 22:07:00 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=66.126.103.122; posting-account=duW0ogkAAABjRdnxgLGXDfna0Gc6XqmQ User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2012-05-01T15:05:05-07:00 List-Id: On Tuesday, May 1, 2012 2:53:40 PM UTC-7, tmo...@acm.org wrote: > > An attribute that takes away a ' ' that shouldn't > > have been there in the first place? Yuck. > > What were they thinking? > > > > At this point, the ONLY reason for that extra space > > is compatibility. >=20 > 'Image without the space still wouldn't be good for really nicely > formatted output, and it would be very much less convenient for quick > debug or logging outputs. How would it be less convenient without the space? A big problem is that '= Image adds an extra space for nonnegative numbers but not for negative numb= ers, so if you want debug or log output that doesn't look messy you either = have to concatenate an extra space somewhere else and live with having two = spaces in the output, or use Trim or something like that. OK, I guess that= if you know your numbers aren't negative maybe it might be OK. But I've f= ound the extra space to be a nuisance, including for debugging and logging = outputs. -- Adam