File diff r4904:e2757070351a → r4905:90a4d9d2102d
console.c
Show inline comments
 
@@ -1091,6 +1091,12 @@ void IConsoleCmdExec(const char *cmdstr)
 
		case '"': /* Tokens enclosed in "" are one token */
 
			longtoken = !longtoken;
 
			break;
 
		case '\\': /* Escape character for "" */
 
			if (cmdptr[1] == '"' && tstream_i + 1 < lengthof(tokenstream)) {
 
				tokenstream[tstream_i++] = *++cmdptr;
 
				break;
 
			}
 
			/* fallthrough */
 
		default: /* Normal character */
 
			tokenstream[tstream_i++] = *cmdptr;