From: Jim Meyering Date: Mon, 26 Apr 2004 15:37:33 +0000 (+0000) Subject: (limfield): Make a comment clearer. X-Git-Tag: v5.3.0~1677 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=30ea278e1b91bb76adf589678e47c6bcac209d50;p=thirdparty%2Fcoreutils.git (limfield): Make a comment clearer. --- diff --git a/src/sort.c b/src/sort.c index a5a557fb74..a259ae9746 100644 --- a/src/sort.c +++ b/src/sort.c @@ -910,8 +910,9 @@ limfield (const struct line *line, const struct keyfield *key) } #endif - /* If we're skipping leading blanks, don't start counting characters - until after skipping past any leading blanks. */ + /* If we're ignoring leading blanks when computing the End + of the field, don't start counting bytes until after skipping + past any leading blanks. */ if (key->skipeblanks) while (ptr < lim && blanks[UCHAR (*ptr)]) ++ptr;