History log of /freebsd-10-stable/usr.bin/ctags/
Revision Date Author Comments
256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


216370 11-Dec-2010 joel

Remove the advertising clause from UCB copyrighted files in usr.bin. This
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


201784 08-Jan-2010 dwmalone

This now passes a make universe with WARNS=6.


201606 05-Jan-2010 dwmalone

Change a char that is used as an index into an array into an unisgned char.
Add a missing new style function definition.


201386 02-Jan-2010 ed

Build usr.bin/ with WARNS=6 by default.

Also add some missing $FreeBSD$ to keep svn happy.


166503 04-Feb-2007 rse

cleanup code: remove unnecessary and useless void cast
from void-function skip_string().


166502 04-Feb-2007 rse

Correct parser by using intended C equality ("==") instead of
assignment ("=") operator.


166501 04-Feb-2007 rse

fix bug: avoid dereferencing content of an already free(3)'ed chunk


160465 18-Jul-2006 stefanf

Fix type mismatch between char * and unsigned char *. C guarantees that
the values of the characters here are positive, so it's safe to index arrays
with them.


140368 17-Jan-2005 ru

Added the EXIT STATUS section where appropriate.


129042 07-May-2004 cjc

It was pointed out[0] that ctags(1) uses some potentially dangerous
system(3) calls where user-supplied data is used with no sanity
checking. Since ctags(1) is not setuid and is not likely to be used
in a privileged situation, this is not a big deal. However, the
fix is relatively easy and less ugly than the current code, let's be
safe. (I'm sure there are about 2^134 other system(3) calls like this
out there.)

[0] On freebsd-security by Roman Bogorodskiy <bogorodskiy@inbox.ru>
with subject "ctags(1) command execution vulnerability."

MFC after: 3 days


116044 08-Jun-2003 charnier

The .Xr files


107276 26-Nov-2002 ru

mdoc(7) police: markup polishing.

Approved by: re


100822 28-Jul-2002 dwmalone

ANSIify function definitions to avoid a warning.


97585 30-May-2002 tjr

Document conformance to IEEE Std 1003.1-2001.


97583 30-May-2002 tjr

Sort sections according to mdoc(7).


97581 30-May-2002 tjr

Sort entries by locale collating order when -x is specified.


97577 30-May-2002 tjr

Create tags for typedefs, structs, unions and enums by default (imply the
-t option). Make a new option, -T, to revert to the old behaviour.


97574 30-May-2002 tjr

Avoid buffer overrun when identifies or filenames are extremely long.

OpenBSD revisions: C.c 1.4-1.5, ctags.c 1.5, fortran.c 1.3, lisp.c 1.3,
tree.c 1.2

Obtained from: OpenBSD


97331 27-May-2002 tjr

Exit non-zero if the tags file cannot be opened.


95083 19-Apr-2002 charnier

Use `The .Nm utility'


92920 22-Mar-2002 imp

remove __P


91382 27-Feb-2002 dwmalone

Add missing "#include <string.h>" for memcmp, noticed by gcc3.


91189 24-Feb-2002 gshapiro

ctags would create a corrupt tags file if the source C file used '//' style
comments such as:

// The main() function

Teach ctags about this style of commenting.

Submitted by: Eric Allman <eric@Sendmail.ORG>
MFC after: 1 week


90415 08-Feb-2002 markm

Remove leaf node WARNS?=2 (that mainly I added). This should
help the GCC3 transition and CURRENT in general.


90382 08-Feb-2002 gallatin

add missing <string.h> to give strcpy() a prototype


87862 14-Dec-2001 ru

mdoc(7) police overhaul.


87750 12-Dec-2001 charnier

Remove unused #includes. lex -> Lex, yacc -> Yacc, ... Some .Nm to .Em
conversions. Sort #includes. Spelling. use errx() instead of err() when
explicit message is given.


87628 10-Dec-2001 dwmalone

Style improvements recommended by Bruce as a follow up to some
of the recent WARNS commits. The idea is:

1) FreeBSD id tags should follow vendor tags.
2) Vendor tags should not be compiled (though copyrights probably should).
3) There should be no blank line between including cdefs and __FBSDIF.


87249 03-Dec-2001 markm

Use __FBSDID().


87215 02-Dec-2001 markm

WARNS=2 fixup.


81783 16-Aug-2001 mikeh

Print a space between the function name and line number.

PR: bin/10980
MFC after: 2 weeks


81782 16-Aug-2001 mikeh

Add $FreeBSD$

MFC after: 2 weeks


79755 15-Jul-2001 dd

Remove whitespace at EOL.


79535 10-Jul-2001 ru

mdoc(7) police: removed HISTORY info from the .Os call.


68963 20-Nov-2000 ru

mdoc(7) police: use the new features of the Nm macro.


56677 27-Jan-2000 mjacob

Style change and comment difference per bde.

Obtained from:bde@freebsd.org
Marionette by:mjacob@freebsd.org


56666 27-Jan-2000 mjacob

A cleaner fix to previous.
Obtained from:bde@freebsd.org


56663 27-Jan-2000 mjacob

Fix ctags from core dumping on alpha. Let the diffs out to review,
but I timed out. Added FreeBSD CVS header.


50477 28-Aug-1999 peter

$Id$ -> $FreeBSD$


48792 12-Jul-1999 nik

Add $Id$, to make it simpler for members of the translation teams to
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


48465 02-Jul-1999 billf

Add braces to avoid ambigious else.


41568 06-Dec-1998 archie

Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).


35307 19-Apr-1998 phk

Ctags write to buffer beyond the end of it when the source file
doesn't end with '\n'. It brings segmentation fault.

PR: 4812
Reviewed by: phk
Submitted by: Shigio Yamaguchi <shigio@wafu.netgate.net>


32069 29-Dec-1997 alex

-Wall cleanup.


28625 23-Aug-1997 steve

Teach ctags(1) how to handle intermediate whitespace in macros
and function definitions.

PR: misc/4128
Submitted by: Shigio Yamaguchi <shigio@wafu.netgate.net>


27097 30-Jun-1997 charnier

Add usage string. Typo in man page.


24360 29-Mar-1997 imp

compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.


17292 26-Jul-1996 pst

Add newline, closes bin/1433


13744 30-Jan-1996 mpp

Fix a bunch of spelling errors in a bunch of man pages.


1591 27-May-1994 rgrimes

This commit was generated by cvs2svn to compensate for changes in r1590,
which included commits to RCS files with non-trunk default branches.