From: Jim Meyering Date: Sat, 14 Dec 1996 05:24:48 +0000 (+0000) Subject: . X-Git-Tag: FILEUTILS-3_14a~109 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=290ee99712eca51bb42b8b3e3eef2190c37cdd1d;p=platform%2Fupstream%2Fcoreutils.git . --- diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index 1a51c72..a2727b1 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -1,3 +1,22 @@ +1996-12-12 Paul Eggert + + * system.h (ISDIGIT): Replace with smaller, faster edition + that yields nonzero only on ASCII digits. + (ISDIGIT_LOCALE): New macro, with same meaning that ISDIGIT + used to have. + + * tr.c (is_char_class_member): Use ISDIGIT_LOCALE instead of + ISDIGIT to test for characters in CC_DIGIT class. + + * sort.c (digits): Remove; subsumed by new ISDIGIT. + (inittables): Remove initialization of `digits'. + (fraccompare, numcompare, main): Use ISDIGIT (x) instead of digits[x]. + (fraccompare, numcompare): Avoid casts to unsigned char that are no + longer needed. + + * csplit.c (get_format_width, get_format_prec): Avoid + unnecessary comparison of digit to '\0'. + Thu Dec 12 23:42:51 1996 Jim Meyering * src/sort.c (usage): Clarify description of -u option.