From 66efdff768c305b785234a918c67a687d437380d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Aptel?= Date: Thu, 19 Aug 2010 12:46:54 +0200 Subject: fixed backspace problem, updated terminfo entry and moved TNAME in config.h. --- st.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'st.c') diff --git a/st.c b/st.c index deddb0d..f8d2257 100644 --- a/st.c +++ b/st.c @@ -20,8 +20,6 @@ #include #include -#define TNAME "st-256color" - /* Arbitrary sizes */ #define ESC_TITLE_SIZ 256 #define ESC_BUF_SIZ 256 @@ -107,8 +105,6 @@ typedef struct { char s[ESC_BUF_SIZ]; } Key; -#include "config.h" - /* Drawing Context */ typedef struct { unsigned long col[256]; @@ -117,6 +113,8 @@ typedef struct { GC gc; } DC; +#include "config.h" + static void die(const char *errstr, ...); static void draw(int); static void execsh(void); -- cgit v1.2.1