1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 06:16:40 +02:00

fset: fix execution of actions from fset buffer input

This commit is contained in:
Sébastien Helleu
2017-05-29 21:42:57 +02:00
parent 13d280a677
commit 7ff3b517a8
+1 -1
View File
@@ -477,7 +477,7 @@ fset_buffer_input_cb (const void *pointer, void *data,
if (strcmp (input_data, actions[i][0]) == 0)
{
snprintf (str_command, sizeof (str_command),
"/fset %s", actions[i][1]);
"/fset -%s", actions[i][1]);
weechat_command (buffer, str_command);
return WEECHAT_RC_OK;
}