aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/colldef
Commit message (Collapse)AuthorAgeFilesLines
* Sync program's usage() with manpage's SYNOPSIS.Ruslan Ermilov2005-05-211-1/+1
| | | | Notes: svn path=/head/; revision=146466
* Make the format of LC_COLLATE files architecture independent.Ruslan Ermilov2005-02-271-9/+23
| | | | Notes: svn path=/head/; revision=142686
* Zero out the entire "struct __collate_st_chain_pri", or garbageRuslan Ermilov2005-02-271-12/+8
| | | | | | | | | | | appears in LC_COLLATE files (due to alignment). An alternative would be to bump STR_LEN to 16. (This is in preparation to make LC_COLLATE files architecture independent.) Notes: svn path=/head/; revision=142649
* Sort sections.Ruslan Ermilov2005-01-181-7/+7
| | | | Notes: svn path=/head/; revision=140420
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Markup nits.Ruslan Ermilov2004-05-191-8/+5
| | | | Notes: svn path=/head/; revision=129426
* Get rid of duplicates.Ruslan Ermilov2003-09-141-4/+5
| | | | Notes: svn path=/head/; revision=120054
* The .Fn function. Dot terminate sentences. Use .Bd/.Ed instead of .Ar toPhilippe Charnier2003-09-071-25/+35
| | | | | | | emphasize examples of source definition file. Notes: svn path=/head/; revision=119848
* mdoc(7) police: markup polishing.Ruslan Ermilov2002-11-261-1/+1
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107276
* Normalize FILES section by using .Bl/.El enumerate.Philippe Charnier2002-10-161-1/+3
| | | | Notes: svn path=/head/; revision=105238
* Test getopt() against -1 instead of EOF.Philippe Charnier2002-10-161-3/+2
| | | | Notes: svn path=/head/; revision=105237
* Avoid a signedness warning by casting chain_index to a size_t.David Malone2002-09-041-1/+1
| | | | | | | (Should be OK as chain_index is supposed to be positive). Notes: svn path=/head/; revision=102942
* Switch to new format which allows unlimited numbers of chains andAndrey A. Chernov2002-08-311-16/+43
| | | | | | | | usually saves 2K in both data file and program memory. Updated libc required. Notes: svn path=/head/; revision=102659
* Prepare for switching to unlimited chains formatAndrey A. Chernov2002-08-301-15/+31
| | | | Notes: svn path=/head/; revision=102640
* Tweak chain example to show more possibilitiesAndrey A. Chernov2002-08-231-2/+2
| | | | Notes: svn path=/head/; revision=102313
* Allow chains in any form like <name1><name2> or \xf1\xf2, not binaryAndrey A. Chernov2002-08-233-37/+37
| | | | | | | representation only. Notes: svn path=/head/; revision=102299
* Use proper #includeAndrey A. Chernov2002-08-141-1/+1
| | | | Notes: svn path=/head/; revision=101867
* Add #undefs to separate local buffers declaration and now dinamic libc buffersAndrey A. Chernov2002-08-141-0/+5
| | | | Notes: svn path=/head/; revision=101866
* ANSIify function definitions to avoid a warning.David Malone2002-07-281-4/+2
| | | | | | | | PR: 38930 Submitted by: keramida Notes: svn path=/head/; revision=100816
* Use `The .Nm utility'Philippe Charnier2002-04-201-6/+9
| | | | Notes: svn path=/head/; revision=95124
* No longer needed to #ifdef __FBSDID, this is now handled by Makefile.inc1.Ruslan Ermilov2002-04-092-6/+0
| | | | Notes: svn path=/head/; revision=94276
* Remove NO_WERRORs and WARNS=n's. To be revisited after GCC3.Mark Murray2002-02-081-1/+0
| | | | Notes: svn path=/head/; revision=90416
* Remove leaf node WARNS?=2 (that mainly I added). This shouldMark Murray2002-02-081-1/+0
| | | | | | | help the GCC3 transition and CURRENT in general. Notes: svn path=/head/; revision=90415
* Replace -I${.OBJDIR} with -I. and split the CFLAGS line up into two lines.John Baldwin2002-01-081-1/+2
| | | | | | | Requested by: bde Notes: svn path=/head/; revision=89070
* Use -I${.OBJDIR} -I${.CURDIR} rather than -I. so that this compiles in aJohn Baldwin2002-01-081-1/+1
| | | | | | | cross-build environment. Notes: svn path=/head/; revision=89060
* Only use __FBSDID if it is defined. This fixes the 4.4-release (butWarner Losh2001-12-082-0/+4
| | | | | | | | | not stable) -> current upgrade path. Reviewed by: markm Notes: svn path=/head/; revision=87517
* WARNS=2 fixup.Mark Murray2001-12-023-20/+29
| | | | | | | | | Use __FBSDID(). Set NO_WERROR because this would rely on some lex(1) fixes that cannot be committed yet. Notes: svn path=/head/; revision=87243
* Rewrite buffer handling code a bit to handle large values.Andrey A. Chernov2001-11-283-5/+15
| | | | | | | Add more checks for data overflow. Notes: svn path=/head/; revision=87052
* Increase internal buffer spaceAndrey A. Chernov2001-11-281-1/+1
| | | | Notes: svn path=/head/; revision=87050
* Add safeguard to prevent charmap symbol length overflowingAndrey A. Chernov2001-11-271-0/+2
| | | | Notes: svn path=/head/; revision=87015
* Move extern definitions to common.hAndrey A. Chernov2001-11-273-4/+13
| | | | | | | Increase charmap symbol length to 64 Notes: svn path=/head/; revision=87012
* Use strlcpy(3) instead of strcpy(3) to copy optarg into a fixed-size buffer.Maxim Sobolev2001-10-161-1/+1
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=85026
* yyerror() is a printflike functionKris Kennaway2001-07-241-1/+1
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=80280
* Eliminate mdocNG warnings caused by misplaced or extraneous macro calls.Ruslan Ermilov2001-02-281-2/+2
| | | | Notes: svn path=/head/; revision=73233
* mdoc(7) police: use canonical form of .Dd macro.Ruslan Ermilov2000-12-111-1/+1
| | | | Notes: svn path=/head/; revision=69860
* vsprintf() -> vsnprintf()Kris Kennaway2000-11-261-1/+1
| | | | Notes: svn path=/head/; revision=69194
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* mdoc(7) police: use certified section headers wherever possible.Ruslan Ermilov2000-11-171-4/+6
| | | | Notes: svn path=/head/; revision=68854
* Avoid use of direct troff requests in mdoc(7) manual pages.Ruslan Ermilov2000-11-101-3/+2
| | | | Notes: svn path=/head/; revision=68575
* Remove single-space hard sentence breaks. These degrade the qualitySheldon Hearn2000-03-011-8/+16
| | | | | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc. Notes: svn path=/head/; revision=57670
* Moved to shareAndrey A. Chernov1999-10-1824-4757/+0
| | | | Notes: svn path=/head/; revision=52383
* Remove one of the locales which is currently breaking the build.Jordan K. Hubbard1999-10-141-1/+0
| | | | Notes: svn path=/head/; revision=52240
* sv_SE collateAndrey A. Chernov1999-10-033-2/+87
| | | | | | | | | | add one missing dependance PR: 13928 Submitted by: Palle Girgensohn <girgen@partitur.se> Notes: svn path=/head/; revision=51893
* ISO8859-5 collateAndrey A. Chernov1999-10-033-0/+213
| | | | | | | Submitted by: Nikolai Saoukh <nms@ethereal.ru> Notes: svn path=/head/; revision=51891
* allow comments in map filesAndrey A. Chernov1999-10-031-0/+1
| | | | Notes: svn path=/head/; revision=51890
* $Id$ -> $FreeBSD$Peter Wemm1999-08-2817-17/+17
| | | | Notes: svn path=/head/; revision=50477
* Change locale name of Traditional Chinese : zh_TW.BIG5 -> zh_TW.Big5.Foxfair Hu1999-06-081-2/+2
| | | | | | | | | | It makes compatible with IANA charset defination, and let existent I18N app happier. Ref: <http://www.isi.edu/in-notes/iana/assignments/character-sets> Notes: svn path=/head/; revision=47831
* Support the IANA definition of Shift Jis nameley ja_JP.Shift_JISJulian Elischer1999-06-051-2/+2
| | | | | | | as well as the X11 version ja_JP.SJIS Notes: svn path=/head/; revision=47746
* Correct a link problem with zh_TW.BIG5, make the display reasonable.Foxfair Hu1999-04-101-2/+8
| | | | Notes: svn path=/head/; revision=45544
* Supporting locale for Chinese Big5 completely.Foxfair Hu1999-03-201-2/+2
| | | | Notes: svn path=/head/; revision=44911