summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale/lmessages.c
Commit message (Collapse)AuthorAgeFilesLines
* . style(9)phantom2003-06-261-1/+1
| | | | | . fix/add comments (to cover changes done thru last 20 months) . extend monetary testcase to cover int_* values
* Fixes to locale code to properly use indirect pointers in order to preventjkh2003-06-131-1/+1
| | | | | | | memory leaks (fixes bugs earlier purported to be fixed). Submitted by: Ed Moy <emoy@apple.com> Obtained from: Apple Computer, Inc. MFC after: 2 weeks
* Rewrite locale loading procedures, so any load failure will not affectache2002-08-081-11/+12
| | | | | | | | currently cached data. It allows a number of nice things, like: removing fallback code from single locale loading, remove memory leak when LC_CTYPE data loaded again and again, efficient cache use, not only for setlocale(locale1); setlocale(locale1), but for setlocale(locale1); setlocale("C"); setlocale(locale1) too (i.e. data file loaded only once).
* Style fixes in preparation of code rewrittingache2002-08-071-4/+4
|
* Fix the style of the SCM ID's.obrien2002-03-221-2/+3
| | | | I believe have made all of libc .c's as consistent as possible.
* Back out recent replacement of LC_MESSAGES file with directory.phantom2001-12-241-1/+1
| | | | Requested by: ache
* Slightly re-work locale messages storage scheme. Before this commitphantom2001-12-211-1/+1
| | | | | | | | | | | LC_MESSAGES related data was installed to <locale>/LC_MESSAGES file. Now it go to <locale>/LC_MESSAGES/SYS_LC_MESSAGES file. LC_MESSAGES directory is supposed to be storage of message catalogs of userland tools. This should allow us to avoid many potential problems with future libintl related functionality introduction. Thanks for useful suggestions about correct way how to replace plain files with directories at installworld stage to: Ruslan Ermilov <ru>
* * Add my e-mail to copyrightsphantom2001-12-111-6/+8
| | | | * style(9)'ify
* Fix visibility of empty variable -- it should be static.phantom2001-02-241-1/+1
| | | | | Submitted by: bde and Hartmut Brandt <brandt@fokus.gmd.de> (via PR) PR: bin/25308
* catch up to __part_load_locale() interface changephantom2001-02-131-16/+9
|
* Make comparsions more clear (per style(9))phantom2001-02-121-2/+2
|
* o Fix build of libc broken in revision 1.2. offsetof() requires therwatson2001-02-121-0/+2
| | | | | | inclusion of stddef.h. Reviewed by: peter
* Don't use hardcoded struct size, use offsetof() instead (make size calculationsphantom2001-02-111-5/+7
| | | | dynamic)
* Make FreeBSD locale support complete: add support for rest locale categoriesphantom2001-02-081-0/+90
LC_MONETARY, LC_NUMERIC and LC_MESSAGES. Remove stub functions since they don't need anymore. Reviewed by: silence on -i18n
OpenPOWER on IntegriCloud