diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-08-04 08:56:56 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-08-04 08:56:56 +0200 |
commit | dc878c5b69d498e3edb225e1997455510579deed (patch) | |
tree | 2c6dbd6bb5640ce17d23b937463310656ec7f126 /src/core/wee-eval.h | |
parent | b94a1ce59baa99e2076c83d82f25cbe5d9a7c19b (diff) | |
download | weechat-dc878c5b69d498e3edb225e1997455510579deed.zip |
api: add argument "options" in function string_eval_expression, add option "-c" for command /eval (to evaluate a condition)
Diffstat (limited to 'src/core/wee-eval.h')
-rw-r--r-- | src/core/wee-eval.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/wee-eval.h b/src/core/wee-eval.h index d768ff2cb..a570b57e6 100644 --- a/src/core/wee-eval.h +++ b/src/core/wee-eval.h @@ -50,6 +50,7 @@ enum t_eval_comparison extern int eval_is_true (const char *value); extern char *eval_expression (const char *expr, struct t_hashtable *pointers, - struct t_hashtable *extra_vars); + struct t_hashtable *extra_vars, + struct t_hashtable *options); #endif /* __WEECHAT_EVAL_H */ |