diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2022-01-18 09:59:13 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-23 15:41:10 +0100 |
commit | 6a88bbb4ccdbe6e28911b323d4e4123eb4c91c77 (patch) | |
tree | a0e8bb49c19d7645343557bdb4a8d18ec25d1b6f | |
parent | b018f8d5c8d9770dcb044f7fd2063c0dae22fcc9 (diff) | |
download | weechat-6a88bbb4ccdbe6e28911b323d4e4123eb4c91c77.zip |
Remove old and unused config option weechat.plugin.debug
As far as I can see, this option is not used anywhere and should have
been removed in commit 6e69f7f3c.
-rw-r--r-- | src/core/wee-config.c | 8 | ||||
-rw-r--r-- | src/core/wee-config.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 80552a507..8edfdb216 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -299,7 +299,6 @@ struct t_config_option *config_network_proxy_curl; /* config, plugin section */ struct t_config_option *config_plugin_autoload; -struct t_config_option *config_plugin_debug; struct t_config_option *config_plugin_extension; struct t_config_option *config_plugin_path; struct t_config_option *config_plugin_save_config_on_unload; @@ -4561,13 +4560,6 @@ config_weechat_init_options () "\"*,!lua,!tcl\")"), NULL, 0, 0, "*", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); - config_plugin_debug = config_file_new_option ( - weechat_config_file, ptr_section, - "debug", "boolean", - N_("enable debug messages by default in all plugins (option disabled " - "by default, which is highly recommended)"), - NULL, 0, 0, "off", NULL, 0, - NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); config_plugin_extension = config_file_new_option ( weechat_config_file, ptr_section, "extension", "string", diff --git a/src/core/wee-config.h b/src/core/wee-config.h index afdd9bf71..5cae8d136 100644 --- a/src/core/wee-config.h +++ b/src/core/wee-config.h @@ -342,7 +342,6 @@ extern struct t_config_option *config_network_gnutls_handshake_timeout; extern struct t_config_option *config_network_proxy_curl; extern struct t_config_option *config_plugin_autoload; -extern struct t_config_option *config_plugin_debug; extern struct t_config_option *config_plugin_extension; extern struct t_config_option *config_plugin_path; extern struct t_config_option *config_plugin_save_config_on_unload; |