From: Jim Meyering Date: Sat, 4 Aug 2001 17:08:37 +0000 (+0000) Subject: (quote_name): Pass 0 to mbsnwidth, since the default X-Git-Tag: TEXTUTILS-2_0_15~507 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aecb3ebe6f232cefdbd6b4ae80b4e9bd4d84b78b;p=platform%2Fupstream%2Fcoreutils.git (quote_name): Pass 0 to mbsnwidth, since the default got changed and we want the default now. --- diff --git a/src/ls.c b/src/ls.c index db7864e..6c2cefa 100644 --- a/src/ls.c +++ b/src/ls.c @@ -2873,9 +2873,7 @@ quote_name (FILE *out, const char *name, struct quoting_options const *options) /* Assume unprintable characters have a displayed_width of 1. */ #if HAVE_MBRTOWC if (MB_CUR_MAX > 1) - displayed_width = mbsnwidth (buf, len, - (MBSW_ACCEPT_INVALID - | MBSW_ACCEPT_UNPRINTABLE)); + displayed_width = mbsnwidth (buf, len, 0); else #endif displayed_width = len;