Merge branch 'master' into ast

Conflicts:
	complete.cpp
This commit is contained in:
ridiculousfish
2013-10-27 13:37:14 -07:00
28 changed files with 167 additions and 107 deletions

View File

@@ -1618,24 +1618,24 @@ static int builtin_echo(parser_t &parser, wchar_t **argv)
{
case L'n':
print_newline = false;
break;
break;
case L'e':
interpret_special_chars = true;
break;
break;
case L's':
// fish-specific extension,
// which we should try to nix
print_spaces = false;
break;
break;
case L'E':
interpret_special_chars = false;
break;
break;
}
}
}
else
{
invalid_echo_option:
invalid_echo_option:
break;
}
argv++;