From 7e64b9f1f94b0d154a8def7c166f0eaeb667c5d5 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Mon, 29 Jul 2013 18:53:04 +0200 Subject: [PATCH] core: add note about evaluated content of option (for options allowing secured data inside) --- src/core/wee-config.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 308d16c21..95b016606 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -1873,12 +1873,14 @@ config_weechat_init_options () config_startup_command_after_plugins = config_file_new_option ( weechat_config_file, ptr_section, "command_after_plugins", "string", - N_("command executed when WeeChat starts, after loading plugins"), + N_("command executed when WeeChat starts, after loading plugins " + "(note: content is evaluated, see /help eval)"), NULL, 0, 0, "", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); config_startup_command_before_plugins = config_file_new_option ( weechat_config_file, ptr_section, "command_before_plugins", "string", - N_("command executed when WeeChat starts, before loading plugins"), + N_("command executed when WeeChat starts, before loading plugins " + "(note: content is evaluated, see /help eval)"), NULL, 0, 0, "", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); config_startup_display_logo = config_file_new_option ( weechat_config_file, ptr_section,