1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-21 07:15:49 +00:00
freebsd/bin/ed
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.

MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
2024-07-15 16:43:39 -06:00
..
test Remove residual blank line at start of Makefile 2024-07-15 16:43:39 -06:00
buf.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
ed.1 ed(1): Grammar fixes 2024-02-13 12:42:54 +08:00
ed.h bin: Remove ancient SCCS tags. 2023-11-26 22:23:28 -07:00
glbl.c bin: Automated cleanup of cdefs and other formatting 2023-11-26 22:23:59 -07:00
io.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
main.c ed(1): Fix grammar in comment 2024-02-13 17:55:54 +08:00
Makefile Remove residual blank line at start of Makefile 2024-07-15 16:43:39 -06:00
Makefile.depend Remove $FreeBSD$: one-line sh pattern 2023-08-16 11:55:03 -06:00
POSIX Remove $FreeBSD$: one-line bare tag 2023-08-16 11:55:20 -06:00
re.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
README Remove $FreeBSD$: one-line bare tag 2023-08-16 11:55:20 -06:00
sub.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00
undo.c Remove $FreeBSD$: one-line .c pattern 2023-08-16 11:54:42 -06:00

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:
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.