From: Paul Eggert Date: Sun, 5 Apr 2026 22:51:36 +0000 (-0700) Subject: maint: simplify c32issep X-Git-Tag: v9.11~54 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=cff1fa223923be99f272976859c6dcc40fd1ac46;p=thirdparty%2Fcoreutils.git maint: simplify c32issep * src/system.h (c32issep): Avoid unnecessary ‘!!’. --- diff --git a/src/system.h b/src/system.h index 2c6511b277..d3c5f08a78 100644 --- a/src/system.h +++ b/src/system.h @@ -180,7 +180,7 @@ c32issep (char32_t wc) #if defined __GLIBC__ return !! c32isblank (wc); #else - return !! (c32isspace (wc) && ! c32isvertspace (wc) && ! c32isnbspace (wc)); + return c32isspace (wc) && ! c32isvertspace (wc) && ! c32isnbspace (wc); #endif }