From 35129a1caec16dd8fc079f4fb85a7365a8e66ac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 8 Jan 2023 10:01:11 +0100 Subject: [PATCH] core: add note about case insensitive comparison improved in release notes --- ReleaseNotes.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc index cfe71c16b..3719d85e3 100644 --- a/ReleaseNotes.adoc +++ b/ReleaseNotes.adoc @@ -76,6 +76,11 @@ compared UTF-8 char in string2 from the last compared UTF-8 char in string1: * string_strncasecmp_range * string_strcmp_ignore_chars +In addition, the case conversion has been extended, now in addition to range +A-Z, all chars that have a lower case version are handled. + +That means for example the case insensitive comparison of "é" and "É" is 0 +(chars are considered equal). + Example with WeeChat 3.8: [source,c]