Seeking input from developers: glibc copyright assignment policy.

2021-06-14 Thread Paul Eggert
A proposal to change the glibc copyright assignment policy is being circulated on libc-alpha. The email thread starts at , and the text of the email seeking input is at the end of this message. I'm sending this to bug-gnulib be

Re: Seeking input from developers: glibc copyright assignment policy.

2021-06-14 Thread Bruno Haible
Hi Paul, > A proposal to change the glibc copyright assignment policy is being > circulated on libc-alpha. The email thread starts at > , and > the text of the email seeking input is at the end of this message. > > I'm sending

[PATCH] idx: new printf/scanf length modifier macro

2021-06-14 Thread Paul Eggert
* lib/idx.h (pIDX): New macro. --- ChangeLog | 5 + lib/idx.h | 4 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index b98de6bf6..4e8242ade 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2021-06-14 Paul Eggert + + idx: new printf/scanf length modif

Re: [PATCH] idx: new printf/scanf length modifier macro

2021-06-14 Thread Bruno Haible
> +/* A printf/scanf length modifier for idx_t. For example, if i is an idx_t, > + printf ("i = %"pIDX"d\n", i) outputs i's value. */ > +#define pIDX "t" Note that this modifier is not supported in internationalized format strings. gettext() supports only the modifier names from . [1] Bruno