Index: input/input.c =================================================================== --- input/input.c (revision 25326) +++ input/input.c (working copy) @@ -719,6 +719,10 @@ assert(str != NULL); #endif + // Ignore heading spaces. + while (str[0] == ' ' || str[0] == '\t') + ++str; + if (strncmp(str, "pausing ", 8) == 0) { pausing = 1; str = &str[8];