diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-02 12:26:07 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-11 21:06:54 +0200 |
commit | 047a668275a2f11bd6e788724381c1d5febb4c27 (patch) | |
tree | b78736b5616b86af97768fcfb27de8dcae476121 /src | |
parent | 36847bd30548acb72cc0c41c4cfff6f5792e2ff2 (diff) | |
download | weechat-047a668275a2f11bd6e788724381c1d5febb4c27.zip |
relay: remove "%h" from help on UNIX socket path option (issue #1285)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/relay/relay-config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/relay/relay-config.c b/src/plugins/relay/relay-config.c index 153c96e7e..f011df466 100644 --- a/src/plugins/relay/relay-config.c +++ b/src/plugins/relay/relay-config.c @@ -827,9 +827,9 @@ relay_config_create_option_port_path (const void *pointer, void *data, weechat_config_new_option ( config_file, section, option_name, "string", - _("path to a socket file; \"%h\" at beginning of string " - "is replaced by WeeChat home (\"~/.weechat\" by default), " - "content is evaluated (see /help eval)"), + _("path to a socket file " + "(path is evaluated, see function string_eval_path_home " + "in plugin API reference)"), NULL, 0, 0, "", value, 0, &relay_config_check_path_cb, NULL, NULL, &relay_config_change_path_cb, NULL, NULL, |