summaryrefslogtreecommitdiffstats
path: root/usr.bin/m4
Commit message (Collapse)AuthorAgeFilesLines
* english(4) police.schweikh2002-12-271-1/+1
|
* When we appear to want a signed value from sizeof(), use ssize_t in the cast,jmallett2002-10-301-1/+1
| | | | rather than int.
* Die on -D=foo, when parsing options - we can't let someone define (nil).jmallett2002-09-041-0/+2
| | | | MFC after: 3 days
* Kill extraneous whitespace.jmallett2002-07-1510-90/+90
|
* Add a default case to the getopt(3) switch, remove a blank line nearby.jmallett2002-07-141-1/+1
|
* Functions declared as <type> <identifier>(<nil>) should be declared asjmallett2002-07-145-27/+27
| | | | <type> <identifier>(<void-type>) in ANSI C.
* Remove prototype for main().jmallett2002-07-141-2/+0
|
* Whitespace fixes to line-up EOL escapes whose right-most extraints changed injmallett2002-06-201-15/+15
| | | | the previous revision due to the biggest line changing.
* Cast sp to uintptr_t when doing a compare of it to STACKMAX which is a size_t.jmallett2002-06-202-5/+5
| | | | This messes up some indentation in mdef.h for some macros.
* Note that this appeared at least as early as PWB UNIX.jmallett2002-06-101-2/+1
| | | | Use the literal string 'PWB UNIX', as we still have no .At macro for it.
* Make the manpage consistent with the code on the subject of comments, as tojmallett2002-06-031-1/+4
| | | | | | | | not change the code to always do the "GNU" thing, as it's possible people rely on BSD m4(1) traditionally resetting comment characters in case of no arguments to the changecom function. PR: bin/17480 (I think this satisfies the problem report)
* mdoc(7) police: tidy up the markup.ru2002-05-301-84/+101
|
* Add Standards, Diagnostics and History sections.tjr2002-05-261-0/+17
|
* If a file operand cannot be processed, go on to process any remaining filestjr2002-05-261-3/+8
| | | | but exit non-zero.
* Rename `eqrelval' which was renamed from `eqrel' to quiet a shadow warningjmallett2002-05-031-3/+3
| | | | | | | to `op' as suggested by Bruce, as this is used to store the operator between vl and vr. Submitted by: bde
* Revert vendor identifiers, and #if 0 what is #if 0/#else for OpenBSD.jmallett2002-05-036-13/+52
| | | | | | Add __FBSDID() properly. Requested by: bde, mike
* Remove redundant declarations of getopt(3) externals (since <unistd.h> doesjmallett2002-05-022-4/+2
| | | | | take care of them), and add __FreeBSD__ to the defined() checks for the _PATH_DIVNAME.
* Add some spurious veritcal whitespace to reduce diffs to OpenBSD.jmallett2002-05-011-0/+2
|
* Merge local changes again, against ANSIfied m4(1).jmallett2002-05-018-245/+109
|
* Use %zu to print a size_t, not %u and definitely not %d.jmallett2002-04-202-2/+1
| | | | | | | Remove WARNS?=2, as GCC will usually throw a fit right now, and I'm not going to mix WARNS and NO_WERROR. Submitted by: fenner
* Print a size_t as %u not %d.jmallett2002-04-201-1/+1
| | | | Pointed out by: mike, des's tinderbox
* Use `The .Nm utility'charnier2002-04-201-2/+3
|
* Prevent sign extension (again)ache2002-04-201-1/+1
|
* Crank WARNS.jmallett2002-04-209-42/+47
| | | | | | | | | | | | | | | | | | | | | | | | | 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)
* Prevent sign extension on characters with 8bit setache2002-04-191-1/+1
|
* Add __FBSDID, this file was unmodified so it was missed in the initial sweep.jmallett2002-04-191-0/+3
|
* Bring OpenBSD m4(1) off of the OPENBSD vendor branch, and add the -s option,jmallett2002-04-1912-643/+1442
| | | | | | | $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
* Merge differences and correct the manual page.jmallett2002-04-191-144/+309
|
* This adds support for -s to the m4(1) utility, which causes #line directivesjmallett2002-04-176-9/+82
| | | | | | | | | | 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
* remove __Pimp2002-03-222-46/+48
|
* This commit was generated by cvs2svn to compensate for changes in r90744,jmallett2002-02-162-0/+835
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import OpenBSD m4 as of today.jmallett2002-02-167-446/+1907
| |
| * Import OpenBSD m4 as of today.jmallett2001-11-161-109/+224
| |
| * Import OpenBSD m4 as of today.jmallett2001-09-271-18/+66
| |
| * Import OpenBSD m4 as of today.jmallett2001-09-181-2/+10
| |
| * Import OpenBSD m4 as of today.jmallett1999-11-091-0/+3
| |
* | Remove the local basename in favor of the libc version.obrien2001-07-245-43/+22
| | | | | | | | Remove xmalloc and xstrdup and do the error checking at the place of use.
* | Remove whitespace at EOL.dd2001-07-151-1/+1
| |
* | Make sure the len() builtin always returns an answer. Previously,gshapiro2001-05-291-2/+1
| | | | | | | | | | | | | | len(`') didn't return an answer. Now it returns 0. PR: bin/12942 MFC after: 5 days
* | String operations could silently truncate long strings, leaving the outputgshapiro2001-05-181-8/+8
| | | | | | | | | | | | | | | | | | | | | | 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
* | Clean up temporary file(s) and directory when m4 exits without fallinggshapiro2001-04-163-7/+18
| | | | | | | | | | | | through main() (e.g., signals or calls to errx()). PR: conf/25715
* | The secure temporary directory is always created, so always remove it.jhay2001-02-281-5/+1
| |
* | Fix format string warnings.kris2000-11-271-1/+1
| | | | | | | | | | Submitted by: nra Obtained from: NetBSD
* | Create temporary files in a secure directory, instead of using multiplekris2000-11-222-7/+9
| | | | | | | | | | | | | | filenames based on a single invocation of mktemp() in /tmp, which is easily predictable after the first one. Audited by: markm
* | mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-4/+4
| |
* | getopt and friends are declared in <unistd.h>imp2000-09-041-4/+0
| | | | | | | | getopt returns -1 not EOF.
* | Remove unnecessary extern definition of strrchr. It is defined inimp2000-08-161-1/+0
| | | | | | | | string.h, which already was included.
* | Typokris1999-11-151-1/+1
| | | | | | | | Obtained from: OpenBSD
* | $Id$ -> $FreeBSD$peter1999-08-284-4/+4
| |
* | Various man page cleanup:mpp1999-08-151-2/+2
| | | | | | | | | | | | | | | | | | - Sort xrefs - Be consistent with section names as outlines in mdoc(7). - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexey M. Zelkin <phantom@cris.net>
OpenPOWER on IntegriCloud