Re: [PATCH] quote: fuse into quotearg

2012-03-08 Thread Akim Demaille
Hi Bruno, Le 7 mars 2012 à 11:40, Bruno Haible a écrit : > 2012-03-07 Bruno Haible > > quote: Adhere to common module description layout. > * modules/quote (Makefile.am): Add back empty section. > > --- modules/quote.origWed Mar 7 11:36:14 2012 > +++ modules/quote We

Re: bug#8391: chmod setuid & setguid bits

2012-03-08 Thread Paul Eggert
On 03/06/2012 12:41 AM, Jim Meyering wrote: > I like it. Thanks! > I noted one typo: OK, thanks, I fixed that, improved the documentation a bit more, added a test case, and pushed the following into coreutils master on savannah: >From 46d91221a03dae7cfa9dd21aa36e4c2f121a0cc6 Mon Sep 17 00:00:00

[PATCH] modechange: add notations +40, 00440, etc.

2012-03-08 Thread Paul Eggert
* lib/modechange.c (mode_compile): Support new notations +40, -40, =440, 00440. See . --- ChangeLog|6 + lib/modechange.c | 65 +++--- 2 files changed, 53 insertions(+), 18 deletions(-) diff --git a/Ch

new modules 'exp2', 'exp2f', 'exp2l'

2012-03-08 Thread Bruno Haible
The next math function after exp() and expm1() is exp2(). Implemented for all three floating-point types. The notable bugs that had to be worked around: OpenBSD 4.9: exp2(0.6) = 1.517358639986284397 should be 1.515716566... OpenBSD 4.9: exp2l(NaN) = 0.0 should be NaN IRIX 6.5: exp2l(-Inf) = 1.0

[PATCH] savedir: fix comment typo

2012-03-08 Thread Paul Eggert
* lib/savedir.c (savedirstream): Fix typo in comment. --- ChangeLog |5 + lib/savedir.c |2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 54373a3..3d718e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-03-08 Paul Eggert

GSoC idea

2012-03-08 Thread Bruno Haible
Hi, I added the following proposed job for a student to the GNU proposal for Google Summer of Code: Id: Gnulib-Tool-Reimplementation Title: Reimplement gnulib-tool in Python Description: + gnulib-tool is the developer tool that collects modules from gnulib + and stores them in the source code of

Re: vc-dwim and ChangeLog

2012-03-08 Thread Paul Eggert
On 03/08/2012 02:54 AM, Bruno Haible wrote: > ChangeLog is everything in one piece - just handy. > And it requires no knowlegde of git to view it; it's just there as a plain > file. Plus it's faster. One possibility might be to run the equivalent of "git log >ChangeLog" automatically, as part of

Re: copysignf: don't override undeclared system function

2012-03-08 Thread Bruno Haible
> On IRIX 6.5, copysignf() exists in libm (at least for certain target ABIs) > but is not unconditionally declared in the header files. As a result, > gnulib did not detect this function and provided a replacement - but without > the rpl_ prefix. Instead the system function can be used. But for re

Re: [PATCH] test-readtokens.c: avoid const-related compilation warnings

2012-03-08 Thread Jim Meyering
Bruno Haible wrote: > Jim Meyering wrote: >> @@ -77,7 +77,7 @@ main (int argc, char **argv) >> >>if (STREQ (delim, "\\0")) >> { >> - delim = ""; >> + delim = (char *) ""; >>delim_len = 1; >> } >> > > Instead of introducing this cast, how about making 'delim' a 'const

Re: [PATCH] test-readtokens.c: avoid const-related compilation warnings

2012-03-08 Thread Bruno Haible
Jim Meyering wrote: > @@ -77,7 +77,7 @@ main (int argc, char **argv) > >if (STREQ (delim, "\\0")) > { > - delim = ""; > + delim = (char *) ""; >delim_len = 1; > } > Instead of introducing this cast, how about making 'delim' a 'const char *'? I see no code that wri

Re: vc-dwim and ChangeLog

2012-03-08 Thread Bruno Haible
Jim Meyering wrote: > It's that final step, to sync from commit log to ChangeLog > that would have to be automated, Yes, as an everyday user of "vc-dwim --commit" I would welcome a tooling help for "git commit --amend". > but I keep hoping you'll agree to drop the ChangeLog. No, for a project li