diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-10-30 19:41:31 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-10-30 19:41:31 +0100 |
commit | 7cac32fc1f76bcfd7179f2df250f323a1f5b8c84 (patch) | |
tree | e9896eba7c7f48d1a1f4d7035634b8e258f49fb7 /src/plugins/fset | |
parent | c6161d0e4a73665a646688859e1a77cdad0998f8 (diff) | |
download | weechat-7cac32fc1f76bcfd7179f2df250f323a1f5b8c84.zip |
fset: fix filter variable used to match filter string
Diffstat (limited to 'src/plugins/fset')
-rw-r--r-- | src/plugins/fset/fset-option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fset/fset-option.c b/src/plugins/fset/fset-option.c index 36e009159..560095d7a 100644 --- a/src/plugins/fset/fset-option.c +++ b/src/plugins/fset/fset-option.c @@ -319,7 +319,7 @@ fset_option_match_filter (struct t_fset_option *fset_option, const char *filter) fset_option_filter_hashtable_extra_vars, fset_option); result = weechat_string_eval_expression ( - fset_option_filter + 2, + filter + 2, fset_option_filter_hashtable_pointers, fset_option_filter_hashtable_extra_vars, fset_option_filter_hashtable_options); |