aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/locale
Commit message (Collapse)AuthorAgeFilesLines
* Xref setlocale(3), bump document date.Tom Rhodes2005-11-011-1/+3
| | | | Notes: svn path=/head/; revision=151934
* Use the standard section name.Ruslan Ermilov2005-01-181-1/+1
| | | | Notes: svn path=/head/; revision=140458
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Remove la_LN.* from the list of bogus locales. They're incomplete, butTim J. Robbins2004-08-021-1/+1
| | | | | | | still potentially useful. Notes: svn path=/head/; revision=133014
* Exclude bogus la_LN.* and UTF-8 locales from the output of locale -aTim J. Robbins2004-08-021-1/+11
| | | | | | | to discourage people from using them. Notes: svn path=/head/; revision=133013
* Clean up language and markup.Ruslan Ermilov2004-05-191-24/+25
| | | | Notes: svn path=/head/; revision=129437
* Back out LANG printing changes. POSIX is unclear in this place, butAndrey A. Chernov2004-02-021-10/+11
| | | | | | | other systems do that in the old way. Notes: svn path=/head/; revision=125329
* Fix printout case when LANG is overwritten by LC_ALLAndrey A. Chernov2004-02-011-11/+10
| | | | Notes: svn path=/head/; revision=125298
* Userland signed char fixes for PPC build. Problems were using a charPeter Grehan2004-01-221-1/+1
| | | | | | | | | | | | return for getopt() and comparing to -1, ditto with fgetc() and EOF, and using the kg_nice value from <sys/user.h> Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> Reviewed by: obrien, bde (a while back) Tested lightly on: ppc, i386, make universe Notes: svn path=/head/; revision=124830
* Grammar, spelling and punctuation sweep.Christian Brueffer2003-11-261-9/+9
| | | | | | | Approved by: re (rwatson) Notes: svn path=/head/; revision=122992
* Move scmp() to more appropriate locationAlexey Zelkin2003-06-261-10/+9
| | | | Notes: svn path=/head/; revision=116877
* Add support of '-m' option to show charmaps (or correctly to say list ofAlexey Zelkin2003-06-262-13/+54
| | | | | | | | | available codesets) Modify manpages appropriatelly Notes: svn path=/head/; revision=116876
* implement LC_MONETARY's int_* keywordsAlexey Zelkin2003-06-261-2/+32
| | | | Notes: svn path=/head/; revision=116873
* locale.c:Alexey Zelkin2003-06-252-7/+6
| | | | | | | | | | | | | Use newly added __detect_path_locale() helper to lookup _PathLocale value. It adds boundary checking for PATH_LOCALE environment variable value and check for super-user fallback. Makefile: Add lib/libc/locale to compiler's include path (for setlocale.h) Notes: svn path=/head/; revision=116851
* Catch up with _PATH_LOCALE move from rune.h to paths.hAlexey Zelkin2003-06-251-1/+1
| | | | Notes: svn path=/head/; revision=116845
* document 'list' keyword & fix few typosAlexey Zelkin2003-06-221-3/+7
| | | | Notes: svn path=/head/; revision=116676
* Add FreeBSD specific keyword 'list' implementation. 'locale -k list' canAlexey Zelkin2003-06-221-97/+138
| | | | | | | be used to retrieve list of all available keywords now. Notes: svn path=/head/; revision=116675
* Add WARNSAlexey Zelkin2003-06-221-0/+1
| | | | Notes: svn path=/head/; revision=116674
* Fix few typos and remove two unneeded checksAlexey Zelkin2003-06-201-4/+3
| | | | | | | Noticed by: ache Notes: svn path=/head/; revision=116618
* We have manpage now, so remove NOMANAlexey Zelkin2003-06-201-1/+0
| | | | Notes: svn path=/head/; revision=116617
* Fix most warnings, sort prototypes, kill spaces at EOLsAlexey Zelkin2003-06-201-27/+36
| | | | Notes: svn path=/head/; revision=116616
* Add minimalistic manual page for locale(1)Alexey Zelkin2003-06-201-0/+91
| | | | Notes: svn path=/head/; revision=116613
* Complete rewrite of locale(1) in order to become POSIX complaint utilitty.Alexey Zelkin2003-06-201-84/+400
| | | | | | | | It's possibly not completely complaint with POSIX requirements, but very close to it now. Notes: svn path=/head/; revision=116612
* Add locale(1). I have used it for while as useful debugging toolAlexey Zelkin2002-10-162-0/+220
for locale related things. So, I think it could be useful for others. It's not yet implement (or implement in different manner) all POSIX things, but I think it's good enough for start. POSIX conformance related updates and manpage to follow relatively soon. Notes: svn path=/head/; revision=105239