# HG changeset patch # User Bob Pendleton # Date 1200157002 0 # Node ID 41d2599b71177b6737a2a185137ba24c67c2c508 # Parent 9f712d1e77f25014be0c5f8a811bc3dab4537882 one more time... I must be brain dead... diff -r 9f712d1e77f2 -r 41d2599b7117 src/video/x11/SDL_x11keyboard.c --- a/src/video/x11/SDL_x11keyboard.c Sat Jan 12 16:53:30 2008 +0000 +++ b/src/video/x11/SDL_x11keyboard.c Sat Jan 12 16:56:42 2008 +0000 @@ -859,19 +859,19 @@ KeyCodeToSDLK tables to find the right one (if any). */ -/* *INDENT-ON* */ +/* *INDENT-OFF* */ struct { KeySym sym; SDLKey key; - } fingerprint[] = { - { - XK_Tab, SDLK_TAB}, { - XK_Return, SDLK_RETURN}, { - XK_Escape, SDLK_ESCAPE}, { - XK_space, SDLK_SPACE} + } fingerprint[] = + { + {XK_Tab, SDLK_TAB}, + {XK_Return, SDLK_RETURN}, + {XK_Escape, SDLK_ESCAPE}, + {XK_space, SDLK_SPACE} }; -/* *INDENT-OFF* */ +/* *INDENT-ON* */ SDL_zero(keyboard); data->keyboard = SDL_AddKeyboard(&keyboard, -1);