From 359e46bfff9a72a25a0fb934d042253cf6f8d2fc Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 8 Jan 2007 03:11:36 +0000 Subject: [PATCH] tabs in configs are now handled more correctly. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2460 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/cmd.c b/engine/common/cmd.c index fa1a7dbfa..93007a39d 100644 --- a/engine/common/cmd.c +++ b/engine/common/cmd.c @@ -1049,7 +1049,7 @@ void Cmd_ShiftArgs (int ammount, qboolean expandstring) { cmd_args = COM_StringParse(cmd_args, expandstring, false); if (cmd_args) - while(*cmd_args == ' ') + while(*cmd_args == ' ' || *cmd_args == '\t') cmd_args++; } }