summaryrefslogtreecommitdiff
path: root/src/core/core-signal.c
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2024-04-02 19:12:44 +0200
committerSébastien Helleu <flashcode@flashtux.org>2024-04-07 13:18:13 +0200
commit4adb64284bf5d78c4ca4034b722b936d14ca9bca (patch)
tree55fc93fde25474076fe35a4be6a9beec7116667f /src/core/core-signal.c
parent3cce916035ed4a99c765aa885555a2cc96e95a92 (diff)
downloadweechat-4adb64284bf5d78c4ca4034b722b936d14ca9bca.zip
buffer: add property `input_get_any_user_data` in buffer (issue #2066)
This allows buffers to get any user input, including commands, that are sent to the buffer callback instead of being executed on the buffer.
Diffstat (limited to 'src/core/core-signal.c')
-rw-r--r--src/core/core-signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core-signal.c b/src/core/core-signal.c
index 3f28fe8e8..dbc48d926 100644
--- a/src/core/core-signal.c
+++ b/src/core/core-signal.c
@@ -228,7 +228,7 @@ signal_exec_command (int signal_index, const char *command)
if (signal_upper)
free (signal_upper);
(void) input_data (gui_buffer_search_main (),
- command_eval, NULL, 0);
+ command_eval, NULL, 0, 0);
free (command_eval);
}
}