Re: add __MVS__ to list of systems that should default to UTF-8 in localcharset.c

2023-06-01 Thread Mike Fulton
On Thu, Jun 1, 2023 at 8:23 AM Bruno Haible wrote: > Hi Mike, > > > It looks right but I do see 3 warnings: > > > > :troff: man7/groff_char.7:1051: warning: can't find special character > 'bs' > > troff: man7/groff_char.7:1192: warning: can't find special character > > 'radicalex' > > troff: man7

Re: add __MVS__ to list of systems that should default to UTF-8 in localcharset.c

2023-06-01 Thread Bruno Haible
Hi Mike, > It looks right but I do see 3 warnings: > > :troff: man7/groff_char.7:1051: warning: can't find special character 'bs' > troff: man7/groff_char.7:1192: warning: can't find special character > 'radicalex' > troff: man7/groff_char.7:1195: warning: can't find special character > 'sqrtex'

Re: add __MVS__ to list of systems that should default to UTF-8 in localcharset.c

2023-05-31 Thread Mike Fulton
Hi It looks right but I do see 3 warnings: :troff: man7/groff_char.7:1051: warning: can't find special character 'bs' troff: man7/groff_char.7:1192: warning: can't find special character 'radicalex' troff: man7/groff_char.7:1195: warning: can't find special character 'sqrtex' For example, in the

Re: add __MVS__ to list of systems that should default to UTF-8 in localcharset.c

2023-05-31 Thread Bruno Haible
Mike Fulton wrote: > I would like to request the __MVS__ macro be added so that z/OS will > default to UTF-8, e.g. > > # if (defined __APPLE__ && defined __MACH__) || defined __BEOS__ || defined > __HAIKU__ || defined __MVS__ > codeset = "UTF-8"; > # else This doesn't seem right. I unders

add __MVS__ to list of systems that should default to UTF-8 in localcharset.c

2023-05-30 Thread Mike Fulton
Hi, I would like to request a patch to localcharset.c to add __MVS__ to the list of systems that should default to UTF-8. On line 1137 to 1139, the code is currently: # if (defined __APPLE__ && defined __MACH__) || defined __BEOS__ || defined __HAIKU__ codeset = "UTF-8"

Re: localcharset.c

2011-02-28 Thread Bruno Haible
Simon Josefsson wrote: > Make syntax-check complains about this in localcharset.c: > > if (old_res_ptr != NULL) > free (old_res_ptr); > > maint.mk: found useless "if" before "free" above I wouldn'

localcharset.c

2011-02-28 Thread Simon Josefsson
Make syntax-check complains about this in localcharset.c: if (old_res_ptr != NULL) free (old_res_ptr); maint.mk: found useless "if" before "free" above Any objections to simplifying this to 'free (old_res_ptr);'? /Simon

Re: argp-fmtstream.h, localcharset.c

2006-01-20 Thread Bruno Haible
Karl Berry wrote: > It seems gnulib changes have been made to argp-fmtstream.h, > localcharset.c, previously synced from libc and gettext-runtime > respectively. Should I comment out the sync ? Yes please. Bruno ___ bug-gnulib mailing

argp-fmtstream.h, localcharset.c

2006-01-19 Thread Karl Berry
It seems gnulib changes have been made to argp-fmtstream.h, localcharset.c, previously synced from libc and gettext-runtime respectively. Should I comment out the sync, or? Thanks, k ___ bug-gnulib mailing list bug-gnulib@gnu.org http

Re: [bug-gnulib] another warning in localcharset.c

2006-01-10 Thread Bruno Haible
Werner Lemberg wrote: > During compilation with gcc 3.3.3 I get > > localcharset.c:110: warning: function declaration isn't a prototype OK, should now be fixed in gnulib CVS: 2006-01-10 Bruno Haible <[EMAIL PROTECTED]> * localcharset.c: Update from GNU gettext.

another warning in localcharset.c

2006-01-10 Thread Werner LEMBERG
During compilation with gcc 3.3.3 I get localcharset.c:110: warning: function declaration isn't a prototype maybe the `STATIC' hack as used for locale_charset is needed too... Werner ___ bug-gnulib mailing list bug-gnulib@gn