From 1349d129c51e0c698645c3806601a7c9ebfcef95 Mon Sep 17 00:00:00 2001 From: Konrad Borowski Date: Sat, 12 Oct 2013 21:55:11 +0200 Subject: Fix #213. You can now remove autoloaded functions. Oddly enough, the code is here, but is internal function. --- function.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'function.h') 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. */ -- cgit v1.2.3