new stuff (some warning elimination)

This commit is contained in:
Anselm R. Garbe
2006-07-13 01:55:54 +02:00
parent 8b59083eb1
commit d7e17087ed
7 changed files with 44 additions and 47 deletions

6
kb.c

@ -9,13 +9,13 @@
/********** CUSTOMIZE **********/
char *term[] = {
const char *term[] = {
"aterm", "-tr", "+sb", "-bg", "black", "-fg", "white", "-fn",
"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*",NULL
};
static Key key[] = {
{ Mod1Mask, XK_Return, run, term },
{ Mod1Mask, XK_Return, (void (*)(void *))spawn, term },
{ Mod1Mask, XK_k, sel, "prev" },
{ Mod1Mask, XK_j, sel, "next" },
{ Mod1Mask, XK_g, grid, NULL },
@ -28,7 +28,7 @@ static Key key[] = {
/********** CUSTOMIZE **********/
void
update_keys()
update_keys(void)
{
unsigned int i, len;
KeyCode code;