1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
$NetBSD: patch-a,v 1.3 1998/08/07 11:08:55 agc Exp $
*** doc/man/elk.1.orig Thu Apr 6 14:40:07 1995
--- doc/man/elk.1 Thu Apr 6 14:41:02 1995
***************
*** 2,10 ****
.TH ELK 1 "15 January 1991"
.UC 4
.SH NAME
! elk, scheme \- extensible Scheme interpreter
.SH SYNOPSIS
! .B scheme
[
.B \-l \f2file\fP
] [
--- 2,10 ----
.TH ELK 1 "15 January 1991"
.UC 4
.SH NAME
! elk \- extensible Scheme interpreter
.SH SYNOPSIS
! .B elk
[
.B \-l \f2file\fP
] [
***************
*** 20,27 ****
] [[
.B \-\^\-
] \f2args\fP]
- .LP
- .BR elk .\|.\|.
.SH DESCRIPTION
.I Elk
(Extension Language Kit) is a Scheme interpreter intended
--- 20,25 ----
***************
*** 32,38 ****
is linked with the application it serves, but a stand-alone version
of the Scheme interpreter is installed as well (usually under
the name
! .BR scheme ).
This interpreter, together with the standard Scheme toplevel,
.I Elk
can be used as an ordinary, stand-alone implementation of the
--- 30,36 ----
is linked with the application it serves, but a stand-alone version
of the Scheme interpreter is installed as well (usually under
the name
! .BR elk ).
This interpreter, together with the standard Scheme toplevel,
.I Elk
can be used as an ordinary, stand-alone implementation of the
--- Makefile.orig Mon Jul 31 13:56:26 1995
+++ Makefile Tue Mar 31 11:44:51 1998
@@ -16,9 +16,9 @@
lib/unix\
lib/xlib\
lib/xt\
- lib/xaw\
- lib/xm\
- lib/xm/xt
+ lib/xaw
+# lib/xm\
+# lib/xm/xt
# ----------------------------------------------------------------------
@@ -37,7 +37,7 @@
done
install:
- @for i in $(SUBDIRS) ;\
+ @for i in $(SUBDIRS) doc/man;\
do \
echo Installing $$i...; \
( cd $$i ; $(MAKE) install ) || exit $$?; \
|