summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-07-29 18:53:04 +0200
committerSebastien Helleu <flashcode@flashtux.org>2013-07-29 18:53:04 +0200
commit7e64b9f1f94b0d154a8def7c166f0eaeb667c5d5 (patch)
tree0bf195f36c33d4b79c20a29abb91f86e543d9361 /src
parenta668775ae35d011785321533afd36d486e673ebd (diff)
downloadweechat-7e64b9f1f94b0d154a8def7c166f0eaeb667c5d5.zip
core: add note about evaluated content of option (for options allowing secured data inside)
Diffstat (limited to 'src')
-rw-r--r--src/core/wee-config.c6
1 files 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,