Fix #213. You can now remove autoloaded functions.

Oddly enough, the code is here, but is internal function.
This commit is contained in:
Konrad Borowski
2013-10-12 21:55:11 +02:00
parent 97e731e05c
commit 1349d129c5
3 changed files with 5 additions and 5 deletions

View File

@@ -95,6 +95,9 @@ void function_init();
/** Add a function. */
void function_add(const function_data_t &data, const parser_t &parser);
/** Removes a function from our internal table, returning true if it was found and false if not */
bool function_remove_ignore_autoload(const wcstring &name);
/**
Remove the function with the specified name.
*/