Skip to content

Commit 0b37f56

Browse files
committed
Initial import - ed 0.271 beta. See ChangeLog for revisions since 0.2.
0 parents  commit 0b37f56

File tree

487 files changed

+159399
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

487 files changed

+159399
-0
lines changed

ABOUT-NLS

Lines changed: 1282 additions & 0 deletions
Large diffs are not rendered by default.

AUTHORS

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
AUTHORS: Authors of the ed line editor.
2+
3+
Last modified: 2011-09-12 <[email protected]>
4+
5+
* Program and Documentation
6+
Andrew L. Moore authored the ed program and documentation.
7+
8+
* Tutorials
9+
Brian W. Kernighan authored the ed tutorials. They are included in
10+
this distribution courtesy of Lucent Laboratories.
11+
12+
* GNU Port
13+
François Pinard ported FreeBSD ed to GNU, adding a texinfo manual, GNU
14+
getopt-long support and ed 0.2's autoconf build system.
15+
16+
* Contributors
17+
Futher acknowledgements are in the file THANKS.
18+
19+
# Local variables:
20+
# mode: outline
21+
# eval: (add-hook 'write-file-functions 'time-stamp)
22+
# time-stamp-start: "Last modified: "
23+
# time-stamp-format: "%:y-%02m-%02d <%u@%h>"
24+
# time-stamp-end: "$"
25+
# End:

BUGS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Report bugs to: <[email protected]>.
2+

COPYING

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

ChangeLog

Lines changed: 1362 additions & 0 deletions
Large diffs are not rendered by default.

INSTALL

Lines changed: 370 additions & 0 deletions
Large diffs are not rendered by default.

Makefile.am

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Makefile.am: Top-level automake template for the ed line editor.
2+
3+
# Copyright © 1993-2013 Andrew L. Moore, SlewSys Research
4+
5+
# Last modified: 2012-10-07 <[email protected]>
6+
7+
# Process this file with automake to create Makefile.in
8+
9+
ACLOCAL_AMFLAGS = -I m4
10+
11+
SUBDIRS = doc
12+
13+
if LDADD_LIBED
14+
SUBDIRS += lib
15+
endif LDADD_LIBED
16+
17+
if LDADD_LIBINTL
18+
SUBDIRS += intl
19+
endif
20+
21+
SUBDIRS += po
22+
23+
SUBDIRS += src testsuite
24+
25+
.PHONY: quick-check
26+
27+
quick-check: all
28+
cd $(top_builddir)/testsuite && $(MAKE) $(AM_MAKEFLAGS) $@
29+
30+
maintainer-update-dist:
31+
@if test ."$(top_srcdir)" != ."$(top_builddir)"; then \
32+
echo "$@: $(top_builddir): Must run from \$(top_srcdir)"; \
33+
exit 1; \
34+
fi
35+
@if test ! -w "$(top_srcdir)"; then \
36+
echo "$@: $(top_srcdir): Permission denied."; \
37+
exit 1; \
38+
fi
39+
chmod +x $(top_srcdir)/bootstrap-sh
40+
chmod +x $(top_srcdir)/testsuite/ts-am-sw.ed
41+
if test ! -f $(top_srcdir)/testsuite/.ts-am-sw; then \
42+
cd $(top_srcdir)/testsuite && ./ts-am-sw.ed && touch ./.ts-am-sw; \
43+
fi
44+
cd $(top_srcdir)/ && ./bootstrap-sh
45+
-$(MAKE) $(AM_MAKEFLAGS) all
46+
rm -f $(top_srcdir)/testsuite/testsuite
47+
-$(MAKE) $(AM_MAKEFLAGS) check
48+
cp $(top_srcdir)/testsuite/testsuite \
49+
$(top_srcdir)/testsuite/testsuite-dist
50+
cd $(top_srcdir)/po && $(MAKE) $(AM_MAKEFLAGS) update-po
51+
if test -f $(top_srcdir)/testsuite/.ts-am-sw; then \
52+
cd $(top_srcdir)/testsuite && ./ts-am-sw.ed && rm -f ./ts-am-sw; \
53+
fi
54+
cd $(top_srcdir)/ && ./bootstrap-sh
55+
$(MAKE) $(AM_MAKEFLAGS) distclean
56+
57+
distclean-local:
58+
rm -rf testsuite/.ts-am-sw autom4te.cache
59+
rm -rf GPATH GRTAGS GSYMS GTAGS
60+
find . -name '[Tt][Aa][Gg][Ss]' -type f -delete
61+
find . \( -name '*~' -or -name '#*#' \) -type f -delete
62+
63+
# Local variables:
64+
# mode: makefile-gmake
65+
# eval: (add-hook 'write-file-functions 'time-stamp)
66+
# time-stamp-start: "Last modified: "
67+
# time-stamp-format: "%:y-%02m-%02d <%u@%h>"
68+
# time-stamp-end: "$"
69+
# End:

0 commit comments

Comments
 (0)