#
c44252b6 |
| 06-Jul-1997 |
Bruce Evans <bde@FreeBSD.org> |
Finish importing Lite2's src/usr.bin, except for ex, diff, grep, mail, pascal and vmstat.sparc. All changed files on the vendor branch should already have been imported.
|
Revision tags: release/2.2.2_cvs |
|
#
232eaee6 |
| 13-Apr-1997 |
Joerg Wunsch <joerg@FreeBSD.org> |
Make the $@ macro behave as described in the man page.
This patch has been submitted by Andreas Burmester (i think) on the German Usenet long ago. Andreas told me that our m4 has quite more subtle
Make the $@ macro behave as described in the man page.
This patch has been submitted by Andreas Burmester (i think) on the German Usenet long ago. Andreas told me that our m4 has quite more subtle bugs, so we might consider using NGU m4 instead.
show more ...
|
Revision tags: release/2.2.1_cvs, release/2.2.0, release/2.1.7_cvs, release/2.1.6_cvs, release/2.1.6.1, release/2.1.5_cvs, release/2.1.0_cvs, release/2.0.5_cvs |
|
#
7799f52a |
| 30-May-1995 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
Remove trailing whitespace.
|
#
cac6992a |
| 17-Apr-1995 |
Andrey A. Chernov <ache@FreeBSD.org> |
1) kill temp diver upon exit 2) add logical ops, fix ! precedence, implement unary +, fix exp Obtained from: NetBSD
|
#
3ee80812 |
| 11-Mar-1995 |
Andrey A. Chernov <ache@FreeBSD.org> |
Fix syscmd() output out of sync Submitted by: smp@clem.systemsix.com
|
#
7c5eeb39 |
| 19-Dec-1994 |
Andrey A. Chernov <ache@FreeBSD.org> |
Make m4 more 8bit clean. Don't use is*(EOF) This fix core dump when LANG setted to 8bit wide charset and ENABLE_STARTUP_LOCALE
|
Revision tags: release/2.0, release/1.1.5.1_cvs |
|
#
9b50d902 |
| 27-May-1994 |
Rodney W. Grimes <rgrimes@FreeBSD.org> |
BSD 4.4 Lite Usr.bin Sources
|
Revision tags: release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0 |
|
#
f03b2751 |
| 16-Aug-2004 |
Tim J. Robbins <tjr@FreeBSD.org> |
Store a pointer to "null" in struct ndblock's defn member instead of a duplicate allocated on the heap; the address defn points to is significant, and is checked against the address of "null" in cert
Store a pointer to "null" in struct ndblock's defn member instead of a duplicate allocated on the heap; the address defn points to is significant, and is checked against the address of "null" in certain conditionals.
PR: 59883 MFC after: 1 week
show more ...
|
Revision tags: release/4.10.0_cvs, release/4.10.0, release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0 |
|
#
aef4bb33 |
| 01-May-2003 |
Tim J. Robbins <tjr@FreeBSD.org> |
Flush streams before calling system() so that the output appears in the right place in the output stream when redirected to a file (when full buffering is enabled). Noticed by schweikh on freebsd-sta
Flush streams before calling system() so that the output appears in the right place in the output stream when redirected to a file (when full buffering is enabled). Noticed by schweikh on freebsd-standards.
show more ...
|
Revision tags: release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs, release/4.6.2_cvs, release/4.6.2, release/4.6.1 |
|
#
2c4acd2f |
| 15-Jul-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Kill extraneous whitespace.
|
Revision tags: release/4.6.0_cvs |
|
#
90432ef8 |
| 03-May-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Revert vendor identifiers, and #if 0 what is #if 0/#else for OpenBSD.
Add __FBSDID() properly.
Requested by: bde, mike
|
#
bd2bfb58 |
| 01-May-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Merge local changes again, against ANSIfied m4(1).
|
#
4d9bfb4d |
| 01-May-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Import OpenBSD m4(1) as of April 26. Mostly ANSIfication changes.
|
#
ccc5b4e6 |
| 20-Apr-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Crank WARNS.
Cast sizeof() to (int), as it's being compared against an int, not a size_t. If i is changed to a size_t, it means the logic must be slightly changed later in the flow, where --i is che
Crank WARNS.
Cast sizeof() to (int), as it's being compared against an int, not a size_t. If i is changed to a size_t, it means the logic must be slightly changed later in the flow, where --i is checked to be >= 0. I am not sure I want to make a logic change to account for clearing up a warning, when an aesthetic one will keep from modifying the logic.
Other harmless casts, that I think I've made in the right directions.
Make gpbc() an inline function, rather than an obfuscated macro, make its scratch space local, rather than global. The previous macro used a dirty hack (logical AND in place of a conditional) which would lead GCC to throw a fit (rightly so) as the logical check, as well as the incrementation of a variable, were not used for anything.
const'ify a few places where gcc3 yells. xstrdup() some global consts in places where we xstrdup() when not using consts, but tried to assign them to non-consts before.
Don't use execv(2) if we don't have the kind of arguments it wants.
Reviewed by: asmodai obrien tjr Submitted by: tjr (a gcc3 build log)
show more ...
|
#
acc9d408 |
| 19-Apr-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Bring OpenBSD m4(1) off of the OPENBSD vendor branch, and add the -s option, $FreeBSD$ identifiers, and fix initialisation to stderr to happen in a function as stderr is not the same in CURRENT as in
Bring OpenBSD m4(1) off of the OPENBSD vendor branch, and add the -s option, $FreeBSD$ identifiers, and fix initialisation to stderr to happen in a function as stderr is not the same in CURRENT as in OpenBSD.
Reviewed by: obrien
show more ...
|
#
b1ea3d46 |
| 17-Apr-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
This adds support for -s to the m4(1) utility, which causes #line directives to be emitted as per the C preprocessor. It updates the manual page in regards to standards accordingly.
PR: standards/
This adds support for -s to the m4(1) utility, which causes #line directives to be emitted as per the C preprocessor. It updates the manual page in regards to standards accordingly.
PR: standards/36075 Submitted by: tjr Reviewed by: mike MFC after: 1 week
show more ...
|
#
e3d86717 |
| 16-Feb-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Import OpenBSD m4 as of today.
|
Revision tags: release/4.5.0_cvs, release/4.4.0_cvs |
|
#
de9b3b90 |
| 24-Jul-2001 |
David E. O'Brien <obrien@FreeBSD.org> |
Remove the local basename in favor of the libc version. Remove xmalloc and xstrdup and do the error checking at the place of use.
|
#
1d3ebaf3 |
| 29-May-2001 |
Gregory Neil Shapiro <gshapiro@FreeBSD.org> |
Make sure the len() builtin always returns an answer. Previously, len(`') didn't return an answer. Now it returns 0.
PR: bin/12942 MFC after: 5 days
|
#
4ba4d387 |
| 18-May-2001 |
Gregory Neil Shapiro <gshapiro@FreeBSD.org> |
String operations could silently truncate long strings, leaving the output corrupted. Mark's patch fixes this be removing the MAXTOK limitation on substring operations and allowing the putback buffe
String operations could silently truncate long strings, leaving the output corrupted. Mark's patch fixes this be removing the MAXTOK limitation on substring operations and allowing the putback buffer size to be the limiting factor. If the putback buffer size if reached, m4 gives an error instead of silently truncating the string.
PR: bin/26619 Submitted by: Mark Peek <mark-ml@whistle.com> MFC after: 5 days
show more ...
|
Revision tags: release/4.3.0_cvs, release/4.3.0 |
|
#
50d793eb |
| 27-Nov-2000 |
Kris Kennaway <kris@FreeBSD.org> |
Fix format string warnings.
Submitted by: nra Obtained from: NetBSD
|
Revision tags: release/4.2.0, release/4.1.1_cvs, release/4.1.0, release/3.5.0_cvs, release/4.0.0_cvs, release/3.4.0_cvs, release/3.3.0_cvs |
|
#
c3aac50f |
| 28-Aug-1999 |
Peter Wemm <peter@FreeBSD.org> |
$Id$ -> $FreeBSD$
|
Revision tags: release/3.2.0, release/3.1.0, release/3.0.0, release/2.2.8 |
|
#
bbfd1447 |
| 08-Sep-1998 |
Steve Price <steve@FreeBSD.org> |
Make the builtin unix macro work as it should (well like Solaris's, GNU's, and OSF1's).
|
Revision tags: release/2.2.7, release/2.2.6, release/2.2.5_cvs |
|
#
ef2cea81 |
| 18-Aug-1997 |
Jonathan Lemon <jlemon@FreeBSD.org> |
divnum is no longer silently restricted to the range 0..9. (cf: 4098)
changequote(,) is now a synonym for changequote(). (cf: 803)
buffer size for translit() enlarged to handle a full string
PR
divnum is no longer silently restricted to the range 0..9. (cf: 4098)
changequote(,) is now a synonym for changequote(). (cf: 803)
buffer size for translit() enlarged to handle a full string
PR: 803, 4098
show more ...
|
#
95105358 |
| 23-Jul-1997 |
Philippe Charnier <charnier@FreeBSD.org> |
Use err(3) instead of local redefinition. Remove progname.
|