]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(limfield): Make a comment clearer.
authorJim Meyering <jim@meyering.net>
Mon, 26 Apr 2004 15:37:33 +0000 (15:37 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 26 Apr 2004 15:37:33 +0000 (15:37 +0000)
src/sort.c

index a5a557fb7477eccf7dc775493b0777bc3333ab8e..a259ae9746cae0ae1fc30811eb5f01c61d45d1b1 100644 (file)
@@ -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;