diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2009-09-07 21:19:29 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2009-09-07 21:19:29 +0200 |
commit | 4e6915a16b75c1e79142e15a9b23e761140d4e9b (patch) | |
tree | 23d8e60a16069631b0b2634aa0f3ef2388c5ed88 /config.h | |
parent | dab8326e6428a5db6b7a6e08f40fa1e5ac77bc6f (diff) |
Fixed possible segfault by reverting to the key struct (again).
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -24,16 +24,15 @@ static const char *colorname[] = { #define DefaultCS 1 #define BellCol DefaultFG - /* special keys */ -static const char *key[] = { - [XK_Delete] = "\033[3~", - [XK_Home] = "\033[1~", - [XK_End] = "\033[4~", - [XK_Prior] = "\033[5~", - [XK_Next] = "\033[6~", - [XK_Left] = "\033[D", - [XK_Right] = "\033[C", - [XK_Up] = "\033[A", - [XK_Down] = "\033[B", +static Key key[] = { + { XK_Delete, "\033[3~" }, + { XK_Home, "\033[1~" }, + { XK_End, "\033[4~" }, + { XK_Prior, "\033[5~" }, + { XK_Next, "\033[6~" }, + { XK_Left, "\033[D" }, + { XK_Right, "\033[C" }, + { XK_Up, "\033[A" }, + { XK_Down, "\033[B" }, }; |