From b2beddf555ece252512d89d8adc3ccc90e62edfe Mon Sep 17 00:00:00 2001 From: Bob Pendleton Date: Sat, 12 Jan 2008 16:56:42 +0000 Subject: [PATCH] one more time... I must be brain dead... --- src/video/x11/SDL_x11keyboard.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/video/x11/SDL_x11keyboard.c b/src/video/x11/SDL_x11keyboard.c index b3af8d61b..9c4cf6eeb 100644 --- a/src/video/x11/SDL_x11keyboard.c +++ b/src/video/x11/SDL_x11keyboard.c @@ -859,19 +859,19 @@ X11_InitKeyboard(_THIS) 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);