aboutsummaryrefslogtreecommitdiffhomepage
path: root/function.h
diff options
context:
space:
mode:
authorGravatar Konrad Borowski <glitchmr@myopera.com>2013-10-12 21:55:11 +0200
committerGravatar Konrad Borowski <glitchmr@myopera.com>2013-10-12 21:55:23 +0200
commit1349d129c51e0c698645c3806601a7c9ebfcef95 (patch)
tree09ce29693c9ca3551cb899d208f02930bc301013 /function.h
parent97e731e05cd696b8b286899f38239d68c67ef181 (diff)
Fix #213. You can now remove autoloaded functions.
Oddly enough, the code is here, but is internal function.
Diffstat (limited to 'function.h')
-rw-r--r--function.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/function.h b/function.h
index 2f8dfc36..e2896f18 100644
--- a/function.h
+++ b/function.h
@@ -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.
*/