clang-format all files

This commit is contained in:
ridiculousfish
2019-06-03 20:30:48 -07:00
parent d1fc8d5f71
commit fc99d6c7af
13 changed files with 30 additions and 28 deletions

View File

@@ -274,11 +274,11 @@ static void maybe_issue_path_warning(const wcstring &which_dir, const wcstring &
if (path.empty()) {
FLOGF(error, _(L"Unable to locate the %ls directory."), which_dir.c_str());
FLOGF(error, _(L"Please set the %ls or HOME environment variable before starting fish."),
xdg_var.c_str());
xdg_var.c_str());
} else {
const wchar_t *env_var = using_xdg ? xdg_var.c_str() : L"HOME";
FLOGF(error, _(L"Unable to locate %ls directory derived from $%ls: '%ls'."),
which_dir.c_str(), env_var, path.c_str());
which_dir.c_str(), env_var, path.c_str());
FLOGF(error, _(L"The error was '%s'."), std::strerror(saved_errno));
FLOGF(error, _(L"Please set $%ls to a directory where you have write access."), env_var);
}