From: Jim Meyering Date: Mon, 25 Nov 1996 03:07:52 +0000 (+0000) Subject: (set_ordering): Revert 1994-05-04 change to this function X-Git-Tag: TEXTUTILS-1_19q~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d43bad18e5ec6fd444612250b262944633058b6;p=thirdparty%2Fcoreutils.git (set_ordering): Revert 1994-05-04 change to this function so that blanks are not unconditionally ignored when computing start and end positions for numeric keys. Reported by Markus Demleitner. --- diff --git a/src/sort.c b/src/sort.c index 573f9eb096..48758e058d 100644 --- a/src/sort.c +++ b/src/sort.c @@ -1695,10 +1695,6 @@ set_ordering (register const char *s, struct keyfield *key, break; case 'n': key->numeric = 1; - if (blanktype == bl_start || blanktype == bl_both) - key->skipsblanks = 1; - if (blanktype == bl_end || blanktype == bl_both) - key->skipeblanks = 1; break; case 'r': key->reverse = 1;