aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/vgrind/vfontedpr.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line .c patternWarner Losh2023-08-231-3/+0
| | | | | | | Remove /^#include\s+<sys/cdefs.h>.*$\n\s+__FBSDID\("\$FreeBSD\$"\);\n/ Similar commit in main: (cherry picked from commit e5d258c9e599)
* General further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-1/+3
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 3-Clause license. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Special thanks to Wind River for providing access to "The Duke of Highlander" tool: an older (2014) run over FreeBSD tree was useful as a starting point. Notes: svn path=/head/; revision=326025
* Renumber copyright clause 4Warner Losh2017-02-281-1/+1
| | | | | | | | | | | | Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point. Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96 Notes: svn path=/head/; revision=314436
* Apply seom style(9) fixes from NetBSDBaptiste Daroussin2015-05-051-26/+24
| | | | | | | Obtained from: NetBSD Notes: svn path=/head/; revision=282461
* Prevent useless use of strdup(3)Baptiste Daroussin2015-05-051-2/+4
| | | | | | | Obtained from: NetBSD Notes: svn path=/head/; revision=282460
* Replace homebrewed NIL by NULLBaptiste Daroussin2015-05-051-31/+30
| | | | Notes: svn path=/head/; revision=282459
* Use stdbool instead of homebrewed booleanBaptiste Daroussin2015-05-051-53/+51
| | | | Notes: svn path=/head/; revision=282457
* Another bit of ansificationBaptiste Daroussin2015-05-051-3/+1
| | | | Notes: svn path=/head/; revision=282450
* Ansify to allow to work on it laterBaptiste Daroussin2015-05-051-12/+10
| | | | Notes: svn path=/head/; revision=282449
* Spelling fixes for usr.bin/Ulrich Spörlein2011-12-301-1/+1
| | | | Notes: svn path=/head/; revision=228992
* Remove the advertising clause from UCB copyrighted files in usr.bin. ThisJoel Dahl2010-12-111-4/+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 Notes: svn path=/head/; revision=216370
* Fix warning about cgetent() argument.Peter Wemm2003-10-261-1/+1
| | | | Notes: svn path=/head/; revision=121547
* remove __PWarner Losh2002-03-221-7/+7
| | | | Notes: svn path=/head/; revision=92922
* WARNS=2 fix, kill register keyword, use __FBSDID().Mark Murray2001-12-111-12/+12
| | | | | | | | NO_WERROR set because of hard-to-fix warnings originating in system headers. Notes: svn path=/head/; revision=87693
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Change the name of a variable from _start to s_start. On alpha thereJohn Birrell1998-05-151-4/+4
| | | | | | | must be a library function called _start. Notes: svn path=/head/; revision=36053
* Many places in the code NULL is used in integer context, wherePoul-Henning Kamp1997-09-181-4/+4
| | | | | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no> Notes: svn path=/head/; revision=29574
* Main() returns int.Philippe Charnier1997-08-261-2/+2
| | | | Notes: svn path=/head/; revision=28789
* Use err(3). Nm vgrind -> Nm in man page.Philippe Charnier1997-08-251-7/+10
| | | | Notes: svn path=/head/; revision=28691
* minor stylistic change (NULL to '\0')John-Mark Gurney1997-04-021-1/+1
| | | | | | | | | Submitted-by: Philippe Charnier <charnier@xp11.frmug.org> Closes PR#2999 Notes: svn path=/head/; revision=24543
* The neverending story... vgrind.Joerg Wunsch1996-10-221-2/+2
| | | | | | | | | | | | For definitions without an "nc" entry, some parts have now been mis-detected as `non-comment'. Avoid this by not converting the noregexp in case the "nc" capability has not been found. I begin to wonder why things like missing "ab"/"ae"'s do work at all... Detected by: nate Notes: svn path=/head/; revision=19097
* Some cleanup:Joerg Wunsch1996-10-181-1/+20
| | | | | | | | | | | | | | | | . correct a typo in regexp.c, . implement a new "nc" (non-comment) feature to describe exceptions from the comment detection; there were problems in Perl with the $# operator that could not be solved by any other means, . prevent blocklevel from becoming negative (due to earlier misdetected sequences), this is probably a workaround for the problem described in PR # bin/1785, . update the Perl description to use the "nc" feature, . update the man page for the "nc" and the undocumented "ab"/"ae" features. Notes: svn path=/head/; revision=19012
* . make vgrind 8-bit clean; note that it still implicitly assumesJoerg Wunsch1996-09-081-2/+2
| | | | | | | | | | | ISO-8859-1, since the characters are simply being passed on to groff . introduce an option to override the silly default to `psroff' as the post-processor . document the new option Notes: svn path=/head/; revision=18164
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-9/+9
| | | | Notes: svn path=/head/; revision=8874
* Reviewed by: phkPoul-Henning Kamp1994-07-241-1/+1
| | | | | | | changed a ctrl-A to \001 Notes: svn path=/head/; revision=1798
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-271-0/+705
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590