Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | o __P has been reoved | imp | 2002-02-02 | 1 | -85/+56 |
| | | | | | | | | | | | | o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int argc, char *argv[]) is the preferred main definition. o Attempt to not break style(9) conformance for declarations more than they already are. o gc some #ifdef sun ... #endif code Approved by: arch@, new style(9) | ||||
* | Default to WARNS=2. Binary builds that cannot handle this must explicitly | obrien | 2001-12-04 | 1 | -1/+0 |
| | | | | | | set WARNS=0. Reviewed by: mike | ||||
* | Remove whitespace at EOL. | dd | 2001-07-15 | 1 | -14/+14 |
| | |||||
* | Fix warnings to compile with WARNS=2 on i386 and alpha | kris | 2001-05-26 | 2 | -27/+43 |
| | | | | Reviewed by: bde | ||||
* | Prepare for mdoc(7)NG. | ru | 2000-12-15 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: use the new features of the Nm macro. | ru | 2000-11-20 | 1 | -1/+1 |
| | |||||
* | Add overflow tests | se | 2000-07-22 | 1 | -3/+76 |
| | |||||
* | Extend numeric operations to support 64 bit numbers. | se | 2000-07-10 | 1 | -30/+29 |
| | |||||
* | $Id$ -> $FreeBSD$ | peter | 1999-08-27 | 3 | -3/+3 |
| | |||||
* | Add cross-references to test(1) and expr(1) respectively. | jkoshy | 1998-12-18 | 1 | -1/+4 |
| | | | | | PR: docs/9111 Submitted by: Josh Gilliam <josh@quick.net> | ||||
* | Correct use of .Nm. | charnier | 1998-05-13 | 1 | -11/+11 |
| | |||||
* | Simplified using new yacc rules and by not generating y.tab.h. | bde | 1998-05-04 | 1 | -10/+4 |
| | |||||
* | Revert $FreeBSD$ to $Id$ | peter | 1997-02-22 | 3 | -3/+3 |
| | |||||
* | Make the long-awaited change from $Id$ to $FreeBSD$ | jkh | 1997-01-14 | 3 | -3/+3 |
| | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. | ||||
* | Backout yacc changes | phk | 1996-06-02 | 1 | -2/+6 |
| | |||||
* | Use default yacc rule. | phk | 1996-05-30 | 1 | -7/+3 |
| | |||||
* | ``mv'' -> ``mv -f'' | wosch | 1996-05-07 | 1 | -2/+2 |
| | | | | | ``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root | ||||
* | Fix some spelling errors. | mpp | 1996-01-29 | 1 | -5/+5 |
| | |||||
* | Fix my own brokeness for the colon operator, when one of the arguments | joerg | 1995-11-18 | 1 | -33/+31 |
| | | | | | was a valid integer. The actual decision between integer and string is now context-dependant on the operator being used. | ||||
* | expr(1) didn't comply to Posix.2 and its own man page: any | joerg | 1995-08-04 | 1 | -1/+13 |
| | | | | | | | | comparisions have been made as string comparisions, even in cases where both operands clearly qualified as integers. The fix is to make the parser properly analyzing whether an operand is a valid integer or not. | ||||
* | Remove trailing whitespace. | rgrimes | 1995-05-30 | 1 | -2/+2 |
| | | | | Reviewed by: phk | ||||
* | You will find enclosed some changes to make gcc -Wall more happy in | joerg | 1995-03-19 | 1 | -2/+3 |
| | | | | | | | | | /usr/src/bin. Note that some patches are still needed in that directory. I (Joerg) finished most of Philippe's cleanup. /bin/sh will still need *allot* of work, however. Submitted by: charnier@lirmm.fr (Philippe Charnier) | ||||
* | Added $Id$ | dg | 1994-09-24 | 2 | -1/+2 |
| | |||||
* | Explicitly include <sys/types.h> before including <regex.h>. This is | bde | 1994-09-05 | 1 | -0/+1 |
| | | | | | apparently required by POSIX. It will be required in practice when the bogus inclusion of <sys/types.h> is removed from <stdio.h>. | ||||
* | Fix gross spelling and typographical errors pointed out by Keith Bostic. | jkh | 1994-04-24 | 1 | -2/+2 |
| | |||||
* | Take -lgnuregex back out. Linking with it causes 'make install' to fail. | rich | 1994-02-03 | 1 | -2/+0 |
| | |||||
* | Document the new, less restrictive, behavior of the matching operator. | jtc | 1993-10-04 | 1 | -14/+15 |
| | |||||
* | Allow expressions like "expr 'ABC' : '^.*$' to work as is done in other | jtc | 1993-10-04 | 1 | -9/+3 |
| | | | | expr implementations. | ||||
* | Fix grammar to eliminate support for unary minus expressions -- they | jtc | 1993-09-14 | 1 | -9/+8 |
| | | | | | weren't supported, they aren't standard, and they caused expr to dump core. | ||||
* | 1003.2 requires that lexical comparisons be done in locale specific manner, | jtc | 1993-08-17 | 1 | -34/+29 |
| | | | | | | | so we have to use strcoll() instead of strcmp(). 1003.2 requires that a null string be returned if a string does not match a \( \) subexpression. Replaced fprintf/exit with calls to err and errx as appropriate. | ||||
* | Remove GNU regex.[ch] and use system's regex library. The library is still | conklin | 1993-08-02 | 1 | -2/+3 |
| | | | | | GNU regex for now, but will be replaced as soon as an alternative is made availiable. | ||||
* | install new manual page | conklin | 1993-07-21 | 1 | -1/+0 |
| | |||||
* | Update to my latest expr (fixes bugs with comparison and matching operators) | conklin | 1993-07-21 | 2 | -42/+138 |
| | | | | Add man page I wrote. | ||||
* | added POSIX regex to expr | alm | 1993-06-19 | 2 | -66/+46 |
| | |||||
* | Initial import, 0.1 + pk 0.2.4-B1 | rgrimes | 1993-06-12 | 2 | -0/+614 |