svl: fix misleading comment

Change-Id: I41406200aa953081c2e2a6ab9cbe8c404d8b5d86
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125305
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
This commit is contained in:
Michael Stahl 2021-11-16 14:20:20 +01:00
parent 59dc5d00b0
commit 3f54dc7469

View file

@ -39,7 +39,7 @@ namespace linguistic
inline bool IsControlChar(sal_Unicode cChar) inline bool IsControlChar(sal_Unicode cChar)
{ {
// TODO: why doesn't this include 0x0F DEL? // TODO: why doesn't this include 0x7F DEL?
return cChar < u' '; return cChar < u' ';
} }