This commit is contained in:
Julien Danjou 2007-09-10 12:02:45 +02:00
parent e3c0478434
commit 604ab3e702
1 changed files with 22 additions and 18 deletions

View File

@ -40,7 +40,9 @@ typedef struct
} KeyMod; } KeyMod;
/** List of keyname and corresponding X11 mask codes */ /** List of keyname and corresponding X11 mask codes */
static const KeyMod KeyModList[] = { {"Shift", ShiftMask}, static const KeyMod KeyModList[] =
{
{"Shift", ShiftMask},
{"Lock", LockMask}, {"Lock", LockMask},
{"Control", ControlMask}, {"Control", ControlMask},
{"Mod1", Mod1Mask}, {"Mod1", Mod1Mask},
@ -52,7 +54,9 @@ static const KeyMod KeyModList[] = { {"Shift", ShiftMask},
}; };
/** List of available layouts and link between name and functions */ /** List of available layouts and link between name and functions */
static const NameFuncLink LayoutsList[] = { {"tile", tile}, static const NameFuncLink LayoutsList[] =
{
{"tile", tile},
{"tileleft", tileleft}, {"tileleft", tileleft},
{"floating", floating}, {"floating", floating},
{"grid", grid}, {"grid", grid},