Commit 6770cf56d3194f3e3fe1a73d450a33b48a7912ca

antirez 2010-03-24T22:13:51

eterm removed from the blacklist

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/linenoise.c b/linenoise.c
index 55eee63..1590f73 100644
--- a/linenoise.c
+++ b/linenoise.c
@@ -81,7 +81,7 @@
 #include <unistd.h>
 
 #define LINENOISE_MAX_LINE 4096
-static char *unsupported_term[] = {"dumb","eterm","cons25",NULL};
+static char *unsupported_term[] = {"dumb","cons25",NULL};
 
 static struct termios orig_termios; /* in order to restore at exit */
 static int rawmode = 0; /* for atexit() function to check if restore is needed*/