zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: zsh-workers@sunsite.dk (Zsh hackers list)
Subject: Re: PATCH: printf builtin
Date: Mon, 24 Sep 2001 11:50:06 +0100	[thread overview]
Message-ID: <87.1001328606@csr.com> (raw)
In-Reply-To: "Peter Stephenson"'s message of "Fri, 21 Sep 2001 15:55:40 BST." <1709.1001084140@csr.com>

Peter Stephenson wrote:
> Also, I don't understand what's happening here.
>   % printf "The answer is %d\x0c" 13
>   The answer is -4265416
> I can't seem to get any of the numeric formats to work.  In fact, I can't
> get the string format to work either.  Maybe there's some portability
> problem with the val union?

It does seem to be that, since everything looks OK up to the call to
printf.  As a test, I got it to work with a nasty hack using a void * and
separate variables for different types.

One problem I can see is that val has an element `zlong'.  Unfortunately on
32-bit machines with the default --enable-lfs, whether or not actual large
file support is available, that's usually a long long, i.e. 64-bits.  This
will certainly confuse printf with a simple `%d' --- Solaris supports
`%lld' but that's unlikely to be completely portable.  I'm afraid that's
another argument for handling the printf codes internally.  However, if we
use matheval(), the only basic numeric types we need to handle are doubles
and zlongs, plus some casting to unsigned: check Src/Builtins/rlimits.c for
some existing support for outputting long long or quad integers via printf.
(I've never actually seen a quad myself.)

However, there seems to be another problem, since changing that to long or
int (which are supposed to be the same here but I'm paranoid --- although
strictly we should enforce %ld if we pass on a long) doesn't help.

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK                          Tel: +44 (0)1223 392070


**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential 
and/or privileged material. 
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by 
persons or entities other than the intended recipient is 
prohibited.  
If you received this in error, please contact the sender and 
delete the material from any computer.
**********************************************************************


  parent reply	other threads:[~2001-09-24 10:51 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-09-20 19:10 Oliver Kiddle
2001-09-20 20:33 ` Bart Schaefer
2001-09-21 10:58   ` Oliver Kiddle
2001-09-21 14:42     ` Bart Schaefer
2001-09-21 14:55 ` Peter Stephenson
2001-09-21 16:13   ` Oliver Kiddle
2001-09-21 17:10     ` Peter Stephenson
2001-09-24  4:42     ` print -z (Re: PATCH: printf builtin) Bart Schaefer
2001-09-24  9:18       ` Peter Stephenson
2001-09-24 16:41         ` PATCH (docs): " Bart Schaefer
2001-09-24 10:50   ` Peter Stephenson [this message]
2001-09-25 17:17     ` PATCH: printf builtin Oliver Kiddle
2001-09-25 17:57       ` Peter Stephenson
2001-10-05 14:54     ` Oliver Kiddle
2001-10-05 17:03       ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87.1001328606@csr.com \
    --to=pws@csr.com \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).