Remove vars parameter from function_exists_no_autoload

This variable was unused.
This commit is contained in:
ridiculousfish
2019-11-10 13:01:47 -08:00
parent 012a3137df
commit 87f4f33600
4 changed files with 5 additions and 7 deletions

View File

@@ -77,7 +77,7 @@ int function_exists(const wcstring &name, parser_t &parser);
void function_load(const wcstring &name, parser_t &parser);
/// Returns true if the function with the name name exists, without triggering autoload.
int function_exists_no_autoload(const wcstring &name, const environment_t &vars);
int function_exists_no_autoload(const wcstring &name);
/// Returns all function names.
///