mirror of
https://github.com/weechat/weechat.git
synced 2026-07-10 11:43:13 +02:00
core, plugins: make commands, hook command_run, completions and aliases case sensitive (issue #1872)
This commit is contained in:
@@ -137,7 +137,7 @@ debug_dump_cb (const void *pointer, void *data,
|
||||
(void) signal;
|
||||
(void) type_data;
|
||||
|
||||
if (!signal_data || (string_strcasecmp ((char *)signal_data, "core") == 0))
|
||||
if (!signal_data || (string_strcmp ((char *)signal_data, PLUGIN_CORE) == 0))
|
||||
debug_dump (0);
|
||||
|
||||
return WEECHAT_RC_OK;
|
||||
|
||||
Reference in New Issue
Block a user