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
|
--- stty/stty.c
+++ stty/stty.c
@@ -79,7 +79,7 @@
static void lcase(int);
#endif
static void ek(int);
-#ifdef TABDLY
+#if 0
static void tty33(int);
static void tty37(int);
static void vt05(int);
@@ -410,7 +410,7 @@
#ifdef OFDEL
{ "fill", fill, 0, 0, 040, M_FUNCT },
#endif
-#ifdef TABDLY
+#if 0
{ "tty33", tty33, 0, 0, 040, M_FUNCT },
{ "tty37", tty37, 0, 0, 040, M_FUNCT },
{ "vt05", vt05, 0, 0, 040, M_FUNCT },
@@ -1125,7 +1125,7 @@
ts.c_cc[VKILL] = '\25';
}
-#ifdef TABDLY
+#if 0
static void
tty33(int not)
{
|