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 /st.c | |
parent | dab8326e6428a5db6b7a6e08f40fa1e5ac77bc6f (diff) | |
download | st-4e6915a16b75c1e79142e15a9b23e761140d4e9b.tar.gz st-4e6915a16b75c1e79142e15a9b23e761140d4e9b.tar.bz2 |
Fixed possible segfault by reverting to the key struct (again).
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 21 |
1 files changed, 19 insertions, 2 deletions
@@ -93,6 +93,11 @@ typedef struct { int cw; /* char width */ } XWindow; +typedef struct { + KeySym k; + char s[ESCSIZ]; +} Key; + #include "config.h" /* Drawing Context */ @@ -146,6 +151,7 @@ static void xinit(void); static void xscroll(void); static void expose(XEvent *); +static char * kmap(KeySym); static void kpress(XEvent *); static void resize(XEvent *); @@ -1005,11 +1011,21 @@ expose(XEvent *ev) { draw(SCredraw); } +char * +kmap(KeySym k) { + int i; + for(i = 0; i < LEN(key); i++) + if(key[i].k == k) + return (char*)key[i].s; + return NULL; +} + void kpress(XEvent *ev) { XKeyEvent *e = &ev->xkey; KeySym ksym; char buf[32]; + char *customkey; int len; int meta; int shift; @@ -1017,8 +1033,9 @@ kpress(XEvent *ev) { meta = e->state & Mod1Mask; shift = e->state & ShiftMask; len = XLookupString(e, buf, sizeof(buf), &ksym, NULL); - if(key[ksym]) - ttywrite(key[ksym], strlen(key[ksym])); + + if(customkey = kmap(ksym)) + ttywrite(customkey, strlen(customkey)); else if(len > 0) { buf[sizeof(buf)-1] = '\0'; if(meta && len == 1) |