Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: Fix two bugs in typeset_setbase
- X-seq: zsh-workers 35026
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
- Subject: Re: PATCH: Fix two bugs in typeset_setbase
- Date: Mon, 4 May 2015 04:34:18 +0200
- Cc: zsh workers <zsh-workers@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=/Qk7f/YOXQXk8hpiaW6YsZQKSSth6bDwcEyb2oEHuFk=; b=hMao3rJd/z7NdD+HEGG0RJZVDijnP48Tl8tFrBjTGgp3I4aDDXx9ClEBBgdWTxTOsc j8W0fgDMzNSVBx6xw1pAxJp/sOzQTCNuKyDbmJrWZpTE0U/0CzW67OQ+DEQ0tgPteOYj NDdTb3UKI0GcEDZaxgR5O9U4pxCFIOfTvw5lqWG9OlsB8hU5VlTbZJCtWHr9wc7clS6k Qv7KwEU1UuMQ/z+FQUDJgYScTRalT2dLiEoS7PwUpE/rIb1fmYQarI3RGBTH+QLKF+e5 RhoZ195xO7WfgUiYxgdWdfbwqf2efyvY9DvkqBPFjFD5NbBxMtV+pq4FeUy6wN8AHpTT Dajw==
- In-reply-to: <CAHYJk3S7CnBdO5ZuEcz_a3RQgd4LK8zJgJ=-gOiH7zwgO=qJjQ@mail.gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <CAOcd6hrtTa7WVerarsU9+ZTWxa5G0g8f9Z+PGKCfMWZ7JWT-UA@mail.gmail.com> <1430685362-12270-1-git-send-email-mikachu@gmail.com> <CAHYJk3RegjW5Q7JuHKH8=kKfkDRY5i1dZLtKQhUBH2bg1GCVaA@mail.gmail.com> <20150503222458.53d6d567@ntlworld.com> <CAHYJk3S7CnBdO5ZuEcz_a3RQgd4LK8zJgJ=-gOiH7zwgO=qJjQ@mail.gmail.com>
On Mon, May 4, 2015 at 12:40 AM, Mikael Magnusson <mikachu@xxxxxxxxx> wrote:
> On Sun, May 3, 2015 at 11:24 PM, Peter Stephenson
> <p.w.stephenson@xxxxxxxxxxxx> wrote:
>> On Sun, 3 May 2015 22:43:46 +0200
>> Mikael Magnusson <mikachu@xxxxxxxxx> wrote:
>>> Perhaps we should apply some limit to the precision of floats? For example,
>>> typeset -F 100000000 foo; echo $foo
>>> succeeds, and at least in my setup, causes typing at the next
>>> commandline to be very slow, because of multiple calls to
>>> setunderscore(). It doesn't seem to affect zsh -f. This could also be
>>> a case of "don't do that then". :)
>>
>> Yes, it's not exactly a bug... but I guess it's easy to set it to some
>> documented ceiling where it's definitely not going to make a practical
>> difference. 100 or 1000?
>
> Came across this comment while poking around earlier (in
> params.c:convfloat()), I guess 1000 should be a very safe limit.
>
> /*
> * The difficulty with the buffer size is that a %f conversion
> * prints all digits before the decimal point: with 64 bit doubles,
> * that's around 310. We can't check without doing some quite
> * serious floating point operations we'd like to avoid.
> * Then we are liable to get all the digits
> * we asked for after the decimal point, or we should at least
> * bargain for it. So we just allocate 512 + digits. This
> * should work until somebody decides on 128-bit doubles.
> */
Oops, the 310 text speaks of the digits before the decimal point (not
sure how I missed it, it's pretty explicit about it). I guess this
means the practical limit is different for -E and -F. I don't know
enough details for floats to make a reasonable suggestion (but
probably doing calculations with multiple thousand digits of precision
is not a job for the shell). I've committed my patch and if someone
wants to plop in a limit, be my guest (or tell me what to make it).
--
Mikael Magnusson
Messages sorted by:
Reverse Date,
Date,
Thread,
Author