From: Jim Meyering Date: Sat, 29 Jul 2000 06:09:22 +0000 (+0000) Subject: tweak comments X-Git-Tag: cvs-readonly~6394 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=d5b1ab33a5cd8b1bdfc1c0892f5fe7bdae94ecef;p=gnulib.git tweak comments --- diff --git a/lib/mbswidth.h b/lib/mbswidth.h index f76021b93..b28a9bac2 100644 --- a/lib/mbswidth.h +++ b/lib/mbswidth.h @@ -25,12 +25,12 @@ /* Optional flags to influence mbswidth/mbsnwidth behavior. */ -/* Assume invalid characters have width 0. If this is not set, the - functions return -1 if an invalid or incomplete character occurs. */ -#define MBSW_ACCEPT_INVALID 1 +/* Assume invalid characters have width 0. If this is zero, the + functions return -1 if they find an invalid or incomplete character. */ +#define MBSW_ACCEPT_INVALID 1 -/* Assume unprintable characters have width 1. If this is not set, the - functions return -1 if a non-printable character occurs. */ +/* Assume unprintable characters have width 1. If this is zero, the + functions return -1 if they find a non-printable character. */ #define MBSW_ACCEPT_UNPRINTABLE 2 /* Returns the number of screen columns needed for STRING. */