Home | History | only in ed
Up to higher level directory
NameDateSize
buf.c17-Mar-20067.1K
cbc.c26-Jun-200512.2K
ed.108-Sep-200323.9K
ed.h26-Jun-20058.4K
glbl.c26-Jun-20056.2K
io.c26-Jun-20058.6K
main.c20-Jul-200831.8K
Makefile29-Aug-2008446
POSIX18-Nov-19994.3K
re.c17-Feb-20053.8K
README21-Mar-1995978
sub.c17-Feb-20056.8K
test/09-Jun-2008
undo.c17-Mar-20074.4K

README

      1 $NetBSD: README,v 1.9 1995/03/21 09:04:33 cgd Exp $
      2 
      3 ed is an 8-bit-clean, POSIX-compliant line editor.  It should work with
      4 any regular expression package that conforms to the POSIX interface
      5 standard, such as GNU regex(3).
      6 
      7 If reliable signals are supported (e.g., POSIX sigaction(2)), it should
      8 compile with little trouble.  Otherwise, the macros SPL1() and SPL0()
      9 should be redefined to disable interrupts.
     10 
     11 The following compiler directives are recognized:
     12 DES		- to add encryption support (requires crypt(3))
     13 NO_REALLOC_NULL	- if realloc(3) does not accept a NULL pointer
     14 BACKWARDS	- for backwards compatibility
     15 NEED_INSQUE	- if insque(3) is missing
     16 
     17 The file `POSIX' describes extensions to and deviations from the POSIX
     18 standard.
     19 
     20 The ./test directory contains regression tests for ed. The README
     21 file in that directory explains how to run these.
     22 
     23 For a description of the ed algorithm, see Kernighan and Plauger's book
     24 "Software Tools in Pascal," Addison-Wesley, 1981.
     25