freebsd-dev/bin/ed
Warner Losh 9842e24c34 Use PATH_MAX rather than MAXPATHLEN. Also fix a possible off by one
error caused by the -1 being on the wrong side of the comparison.
This would not cause an overflow, as near as I can tell, because we
truncate later anyway.  We'd just fail to get a diagnostic for 1024
and 1025 byte file names.
2001-05-29 18:03:14 +00:00
..
test $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00
buf.c $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00
cbc.c Switch from using rand() or random() to a stronger, more appropriate PRNG 2001-03-05 02:15:38 +00:00
ed.1 Remove a comment which seemed to confuse makewhatis: 2001-03-29 01:25:06 +00:00
ed.h Use PATH_MAX rather than MAXPATHLEN. Also fix a possible off by one 2001-05-29 18:03:14 +00:00
glbl.c Include sys/types.h 2000-10-16 07:11:30 +00:00
io.c $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00
main.c Use PATH_MAX rather than MAXPATHLEN. Also fix a possible off by one 2001-05-29 18:03:14 +00:00
Makefile Change DISTRIBUTION name to match reality. 2000-02-29 11:39:24 +00:00
POSIX Locale support was added by ache long ago. 2000-07-17 10:40:48 +00:00
re.c Use PATH_MAX rather than MAXPATHLEN. Also fix a possible off by one 2001-05-29 18:03:14 +00:00
README $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00
sub.c $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00
undo.c $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00

$FreeBSD$

ed is an 8-bit-clean, POSIX-compliant line editor.  It should work with
any regular expression package that conforms to the POSIX interface
standard, such as GNU regex(3).

If reliable signals are supported (e.g., POSIX sigaction(2)), it should
compile with little trouble.  Otherwise, the macros SPL1() and SPL0()
should be redefined to disable interrupts.

The following compiler directives are recognized:
DES		- to add encryption support (requires crypt(3))
NO_REALLOC_NULL	- if realloc(3) does not accept a NULL pointer
BACKWARDS	- for backwards compatibility
NEED_INSQUE	- if insque(3) is missing

The file `POSIX' describes extensions to and deviations from the POSIX
standard.

The ./test directory contains regression tests for ed. The README
file in that directory explains how to run these.

For a description of the ed algorithm, see Kernighan and Plauger's book
"Software Tools in Pascal," Addison-Wesley, 1981.