diff options
Diffstat (limited to 'locale')
-rw-r--r-- | locale/lc-ctype.c | 6 | ||||
-rw-r--r-- | locale/localeinfo.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/locale/lc-ctype.c b/locale/lc-ctype.c index 3fc23948c6..59ff7019aa 100644 --- a/locale/lc-ctype.c +++ b/locale/lc-ctype.c @@ -34,6 +34,8 @@ _NL_CURRENT_DEFINE (LC_CTYPE); void _nl_postload_ctype (void) { + const struct locale_data *data = _NL_CURRENT_DATA (LC_CTYPE); + #define paste(a,b) paste1(a,b) #define paste1(a,b) a##b @@ -58,11 +60,11 @@ _nl_postload_ctype (void) offset = _NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_CLASS_OFFSET); for (cnt = 0; cnt < 12; cnt++) - __ctype32_wctype[cnt] = _nl_current_LC_CTYPE->values[offset + cnt].string; + __ctype32_wctype[cnt] = data->values[offset + cnt].string; offset = _NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MAP_OFFSET); for (cnt = 0; cnt < 2; cnt++) - __ctype32_wctrans[cnt] = _nl_current_LC_CTYPE->values[offset + cnt].string; + __ctype32_wctrans[cnt] = data->values[offset + cnt].string; __ctype32_width = current (char, WIDTH, 0); } diff --git a/locale/localeinfo.h b/locale/localeinfo.h index 2074569811..3a43469c84 100644 --- a/locale/localeinfo.h +++ b/locale/localeinfo.h @@ -158,13 +158,17 @@ extern const char _nl_POSIX_name[] attribute_hidden; /* The standard codeset. */ extern const char _nl_C_codeset[] attribute_hidden; +/* Return a pointer to the current `struct locale_data' for CATEGORY. */ +#define _NL_CURRENT_DATA(category) \ + ((const struct locale_data *) _nl_current_##category) + /* Extract the current CATEGORY locale's string for ITEM. */ #define _NL_CURRENT(category, item) \ (_nl_current_##category->values[_NL_ITEM_INDEX (item)].string) /* Extract the current CATEGORY locale's string for ITEM. */ #define _NL_CURRENT_WSTR(category, item) \ - ((wchar_t *) (_nl_current_##category->values[_NL_ITEM_INDEX (item)].wstr)) + ((wchar_t *) _nl_current_##category->values[_NL_ITEM_INDEX (item)].wstr) /* Extract the current CATEGORY locale's word for ITEM. */ #define _NL_CURRENT_WORD(category, item) \ |