1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 03:33:12 +02:00

core, plugins: make input actions in buffers case sensitive (issue #1872)

This commit is contained in:
Sébastien Helleu
2023-01-26 23:12:32 +01:00
parent c724032a22
commit 73c3c03915
6 changed files with 17 additions and 21 deletions
+1 -1
View File
@@ -206,7 +206,7 @@ irc_input_data (struct t_gui_buffer *buffer, const char *input_data, int flags,
if (buffer == irc_raw_buffer)
{
if (weechat_strcasecmp (input_data, "q") == 0)
if (weechat_strcmp (input_data, "q") == 0)
weechat_buffer_close (buffer);
else
irc_raw_filter_options (input_data);