blob: c0c185da2646aed542f426f0b74f08699bcd61db (
plain) (
blame)
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
|
--- defines.h.orig Mon Feb 24 12:45:37 1992
+++ defines.h Wed Dec 4 02:33:51 1996
@@ -40,14 +40,14 @@
* If TERMIO is 0 your system must have /usr/include/sgtty.h.
* This is normally the case for BSD.
*/
-/*#define TERMIO 1*/
+#define TERMIO 1
/*
* SIGSETMASK is 1 if your system has the sigsetmask() call.
* This is normally the case only for BSD 4.2,
* not for BSD 4.1 or System 5.
*/
-#define SIGSETMASK 0
+#define SIGSETMASK 1
/*
* REGCMP is 1 if your system has the regcmp() function.
@@ -73,7 +73,7 @@
* EDIT_PGM is the name of the (default) editor to be invoked.
*/
#define EDITOR 1
-#define EDIT_PGM "/usr/local/bin/vi"
+#define EDIT_PGM "/usr/bin/vi"
/*
* TAGS is 1 if you wish to support tag files.
|