summaryrefslogtreecommitdiff
path: root/src/plugins/trigger
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-12-24 17:33:22 +0100
committerSébastien Helleu <flashcode@flashtux.org>2022-12-24 17:33:22 +0100
commita67556907d739bbe6db5110e46d581165fd41c64 (patch)
tree2f90c27b4685f25235560f6e1c66543a63075bb0 /src/plugins/trigger
parent083032972dc75ffde841ac77dce4d49093c9ead7 (diff)
downloadweechat-a67556907d739bbe6db5110e46d581165fd41c64.zip
api: rename char comparison functions "utf8_char*" to "string_char*"
Diffstat (limited to 'src/plugins/trigger')
-rw-r--r--src/plugins/trigger/trigger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c
index 43518c291..7d3895217 100644
--- a/src/plugins/trigger/trigger.c
+++ b/src/plugins/trigger/trigger.c
@@ -701,7 +701,7 @@ trigger_regex_split (const char *str_regex,
/* search the delimiter (which can be more than one char) */
pos = weechat_utf8_next_char (ptr_regex);
- while (pos[0] && (weechat_utf8_charcmp (ptr_regex, pos) == 0))
+ while (pos[0] && (weechat_string_charcmp (ptr_regex, pos) == 0))
{
pos = weechat_utf8_next_char (pos);
}