diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-02 21:04:06 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-02 21:04:06 +0000 |
commit | 174d73a3bad55f7359c49c82474e9991871d0e2f (patch) | |
tree | 2bec465ea339c2c3a5c634b1e3c08a655db04f94 /wcsmbs | |
parent | ae309ba9e4f88118c23cd925cef2d457a42f4404 (diff) | |
download | glibc-174d73a3bad55f7359c49c82474e9991871d0e2f.tar.gz glibc-174d73a3bad55f7359c49c82474e9991871d0e2f.tar.xz glibc-174d73a3bad55f7359c49c82474e9991871d0e2f.zip |
2002-08-02 Roland McGrath <roland@redhat.com>
* locale/localeinfo.h (_NL_CURRENT_DATA): New macro. * wcsmbs/wcsmbsload.h (update_conversion_ptrs): Use it. * locale/lc-ctype.c (_nl_postload_ctype): Likewise. * wctype/wctrans.c (wctrans): Likewise. * wctype/wctype.c (__wctype): Likewise. * intl/loadmsgcat.c (_nl_init_domain_conv): Use _NL_CURRENT.
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/wcsmbsload.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wcsmbs/wcsmbsload.h b/wcsmbs/wcsmbsload.h index dee2c815c2..1fcb42c033 100644 --- a/wcsmbs/wcsmbsload.h +++ b/wcsmbs/wcsmbsload.h @@ -57,6 +57,6 @@ extern int __wcsmbs_named_conv (struct gconv_fcts *copy, const char *name) static inline void update_conversion_ptrs (void) { - if (__wcsmbs_last_locale != _nl_current_LC_CTYPE) - __wcsmbs_load_conv (_nl_current_LC_CTYPE); + if (__wcsmbs_last_locale != _NL_CURRENT_DATA (LC_CTYPE)) + __wcsmbs_load_conv (_NL_CURRENT_DATA (LC_CTYPE)); } |