diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-31 06:42:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-31 06:42:36 +0000 |
commit | 4d76a0ec18ca374bbb5a2cf15b80515e246a135b (patch) | |
tree | 59b0a92fc083ec7758b9bd6f4ec21c3f70c5f27d /manual | |
parent | b6aa34eb721a209444df2c0694bb18f8f4a58e47 (diff) | |
download | glibc-4d76a0ec18ca374bbb5a2cf15b80515e246a135b.tar.gz glibc-4d76a0ec18ca374bbb5a2cf15b80515e246a135b.tar.xz glibc-4d76a0ec18ca374bbb5a2cf15b80515e246a135b.zip |
Update.
2000-01-30 Ulrich Drepper <drepper@redhat.com> * locale/programs/ld-collate.c (struct locale_collate_t): Change type of plane_size and plane_cnt to uint32_t. Reported by Jakub Jelinek. 2000-01-29 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (SYSCALL_ERROR_HANDLER): Optimize. (__SYSCALL_STRING, __SYSCALL_CLOBBERS): Define. Include linux/sparc/sysdep.h. Use a different guard define than linux/sparc/sysdep.h. * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Remove stubs for inlined syscalls. * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h (SYSCALL_ERROR_HANDLER): Optimize. (__SYSCALL_STRING, __SYSCALL_CLOBBERS): Define. Include linux/sparc/sysdep.h. * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list: Remove stubs for inlined syscalls. * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c (__sigaction): Use INLINE_SYSCALL. * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: Remove. * sysdeps/unix/sysv/linux/sparc/sysdep.h: New file. 2000-01-29 Ulrich Drepper <drepper@redhat.com>
Diffstat (limited to 'manual')
-rw-r--r-- | manual/message.texi | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/manual/message.texi b/manual/message.texi index 35ef29d40b..e7479c3fad 100644 --- a/manual/message.texi +++ b/manual/message.texi @@ -190,18 +190,16 @@ Otherwise the values of environment variables from the standard environment are examined (@pxref{Standard Environment}). Which variables are examined is decided by the @var{flag} parameter of @code{catopen}. If the value is @code{NL_CAT_LOCALE} (which is defined -in @file{nl_types.h}) then the @code{catopen} function examines the -environment variable @code{LC_ALL}, @code{LC_MESSAGES}, and @code{LANG} -in this order. The first variable which is set in the current -environment will be used. - -If @var{flag} is zero only the @code{LANG} environment variable is -examined. This is a left-over from the early days of this function -where the other environment variable were not known. - -In any case the environment variable should have a value of the form -@code{@var{lang}[_@var{terr}[.@var{codeset}]]} as explained above. If -no environment variable is set the @code{"C"} locale is used which +in @file{nl_types.h}) then the @code{catopen} function use the name of +the locale currently selected for the @code{LC_MESSAGES} category. + +If @var{flag} is zero the @code{LANG} environment variable is examined. +This is a left-over from the early days where the concept of the locales +had not even reached the level of POSIX locales. + +The environment variable and the locale name should have a value of the +form @code{@var{lang}[_@var{terr}[.@var{codeset}]]} as explained above. +If no environment variable is set the @code{"C"} locale is used which prevents any translation. The return value of the function is in any case a valid string. Either |