From a579c12f79e48d7f22e14cd5f984a29f31bf5263 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 22 May 2005 01:53:56 +0000 Subject: [PATCH] so shouting is easier. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1045 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/keys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/keys.c b/engine/client/keys.c index 0302a4b2c..039654b02 100644 --- a/engine/client/keys.c +++ b/engine/client/keys.c @@ -424,7 +424,7 @@ void Key_Console (int key) if (key == K_SPACE && con_current->commandcompletion) { - if (keydown[K_SHIFT] && /*key_lines[edit_line][1] == '/' &&*/ !strchr(key_lines[edit_line], ' ')) + if (keydown[K_SHIFT] && Cmd_CompleteCommand(key_lines[edit_line]+1, true, con_current->commandcompletion)) { CompleteCommand (true); return;