zsh-workers
 help / color / mirror / code / Atom feed
* printf %s in UTF-8 is not POSIX-compliant
@ 2008-03-04  1:29 Vincent Lefevre
  2008-03-04  1:37 ` Vincent Lefevre
  2008-03-04  9:40 ` Peter Stephenson
  0 siblings, 2 replies; 12+ messages in thread
From: Vincent Lefevre @ 2008-03-04  1:29 UTC (permalink / raw)
  To: zsh-workers

Hi,

Under UTF-8 locales:

vin:~> zsh-beta -f
vin% emulate sh
vin% printf ".%2s.\n" é
. é.
vin% /usr/bin/printf ".%2s.\n" é 
.é.
vin%

As you can see, the zsh printf builtin doesn't behave like the
coreutils printf, and this is zsh which is wrong. Indeed, the
precision is the number of bytes, not the number of characters.

http://www.opengroup.org/onlinepubs/009695399/utilities/printf.html

says (in the extended description) that the "file format notation"
shall be used for the format (and %s isn't an exception).

http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap05.html

(file format notation) says:

  s
    The argument shall be taken to be a string and bytes from the
    string shall be written until the end of the string or the number
    of bytes indicated by the precision specification of the argument
    is reached. If the precision is omitted from the argument, it
    shall be taken to be infinite, so all bytes up to the end of the
    string shall be written.

Note: ksh93 has the same bug, but not pdksh and bash. But bash may
change its behavior if not under POSIX compatibility, see

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459413

-- 
Vincent Lefèvre <vincent@vinc17.org> - Web: <http://www.vinc17.org/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.org/blog/>
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2008-03-07  2:29 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-04  1:29 printf %s in UTF-8 is not POSIX-compliant Vincent Lefevre
2008-03-04  1:37 ` Vincent Lefevre
2008-03-04  9:40 ` Peter Stephenson
2008-03-05  0:27   ` Vincent Lefevre
2008-03-05  1:34     ` Bart Schaefer
2008-03-06  1:27       ` Vincent Lefevre
2008-03-05 10:41     ` Peter Stephenson
2008-03-06  1:39       ` Vincent Lefevre
2008-03-06  9:46         ` Peter Stephenson
2008-03-06 17:09       ` Bart Schaefer
2008-03-06 17:45         ` Peter Stephenson
2008-03-07  2:29           ` Bart Schaefer

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).