summaryrefslogtreecommitdiffstats
path: root/usr.bin/join
Commit message (Collapse)AuthorAgeFilesLines
* Migrate most of tools/regression/usr.bin/ to the new tests layout.jmmv2014-03-167-0/+48
| | | | | | | | | | | | | | | I'm starting with the easy cases. The leftovers need to be looked at a bit more closely. Note that this change _does_ modify the code of the old tests. This is required in order to allow the code to locate the data files in the source directory instead of the current directory, because Kyua automatically changes the latter to a temporary directory. Also note that at least one test is known to be broken here. Actually, the test is not really broken: it's marked as a TODO but unfortunately Kyua's TAP parser currently does not understand that. Will have to be fixed separately.
* Cast *tabchar, a wchar_t, to a wint_t as it is the type the %lc printfandrew2013-02-041-1/+1
| | | | | format string expects. This is only an issue on ARM EABI where wint_t is different to wchar_t.
* Fix a typo that crept in.gjb2012-05-181-1/+1
| | | | | | Pointyhat: gjb (myself) Spotted by: hrs MFC after: 2 days (minor change)
* General mdoc(7) and typo fixes.gjb2012-05-101-1/+1
| | | | | | PR: 167696 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org) MFC after: 3 days
* Add missing static keywords to join(1)ed2011-11-061-36/+36
|
* Remove the advertising clause from UCB copyrighted files in usr.bin. Thisjoel2010-12-112-8/+0
| | | | | | | | | is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change Also add $FreeBSD$ to a few files to keep svn happy. Discussed with: imp, rwatson
* mdoc cleanupuqs2010-06-021-2/+0
| | | | | | | Garbage collect unused sections, macros and arguments. Fix prologue and remove empty lines. Found by: mdocml
* Improve markup and do some minor wordsmithing.ru2006-12-211-16/+26
|
* Expand *n't contractions.ru2005-02-131-1/+1
|
* Sort sections.ru2005-01-181-5/+5
|
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+1
|
* Backout recent -j changes, the flags is deprecated.maxim2004-08-262-6/+4
| | | | Requested by: tjr
* Add -j flag to usage() and the man page synopsis.maxim2004-08-252-4/+6
| | | | Inspired by: DragonFlyBSD
* Add support for multibyte characters.tjr2004-07-052-11/+73
|
* Mechanically kill hard sentence breaks.ru2004-07-021-2/+1
|
* Document the fact that join(1) does not recognize multibyte characters.tjr2004-06-241-1/+6
|
* mdoc(7) police: nit.ru2002-11-261-1/+1
| | | | Approved by: re
* ANSIify function definitions.dwmalone2002-09-041-32/+17
| | | | | | | | | Add some constness to avoid some warnings. Remove use register keyword. Deal with missing/unneeded extern/prototypes. Some minor type changes/casts to avoid warnings. Reviewed by: md5
* mdoc(7) police: untangle.ru2002-08-131-1/+1
|
* Consistently use FBSDIDobrien2002-06-301-2/+2
|
* Remove -j from synopsis. The form given in the synopsis was incorrect,tjr2002-06-101-1/+0
| | | | and it should not have been there at all since it is a deprecated option.
* Easy warns fixes; sort out some types and me them a bit more consistent;markm2002-04-281-8/+9
| | | | fix initialisers.
* Remove <ctype.h> - not neededache2002-04-201-1/+0
|
* Allow space between -a and its argument. Honour locale collating ordertjr2002-04-202-16/+12
| | | | | | | by using strcoll() instead of strcmp(). PR: 36270 Reviewed by: mike
* Support -o 0 in join(1) as per SUS.jmallett2002-03-262-17/+35
| | | | | | PR: 36072 Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au> Reviewed by: mike
* remove __Pimp2002-03-221-9/+9
|
* mdoc(7) police: utilize the new .Ex macro.ru2001-08-151-3/+1
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-2/+2
|
* Quote with .Dqcharnier2000-03-271-4/+12
| | | | Asked by: Sheldon
* Add DIAGNOSTICS section name and section name to .Xr.charnier2000-03-261-13/+18
|
* $Id$ -> $FreeBSD$peter1999-08-282-2/+2
|
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-121-0/+1
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Clean up some ambiguous nested if/elses.billf1999-07-041-2/+3
|
* Require all compatability options to begin with '-'.jlemon1997-08-191-1/+4
| | | | PR: 4145
* Cosmetic in usage string.charnier1997-07-151-4/+9
|
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-291-1/+1
| | | | posix standard on the topic.
* Merge from Lite2 (note: needs checking by somebody who understands join)peter1997-03-111-4/+9
|
* This commit was generated by cvs2svn to compensate for changes in r23690,peter1997-03-111-2/+11
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import some parts of CSRG 4.4BSD-Lite2 usr.bin sources to fix tree build.peter1997-03-112-8/+22
| |
* | Fix a genuine off-by-one error that caused join to dump core whenjoerg1997-01-171-3/+3
| | | | | | | | trying to use field numbers tha weren't present in the input data.
* | Don't access stuff we have realloc()'ed using the old pointer.phk1996-10-211-2/+3
| | | | | | | | | | | | | | This is a sample of a new class of malloc usage errors that the Junk option to phkmalloc will expose. Found by: phkmalloc.
* | Remove trailing whitespace.rgrimes1995-05-301-2/+2
|/
* BSD 4.4 Lite Usr.bin Sourcesrgrimes1994-05-273-0/+793
OpenPOWER on IntegriCloud