Remove support for invoking old pager

This commit is contained in:
ridiculousfish
2014-03-15 13:46:15 -07:00
parent 20f9dd9a6b
commit 6c096191ba
3 changed files with 9 additions and 39 deletions

View File

@@ -3152,16 +3152,3 @@ bool parser_use_ast(void)
return from_string<bool>(var);
}
}
bool pager_use_inline(void)
{
env_var_t var = env_get_string(L"fish_new_pager");
if (var.missing_or_empty())
{
return 1;
}
else
{
return from_string<bool>(var);
}
}