diff options
author | Jim Meyering <jim@meyering.net> | 1996-12-14 05:24:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-12-14 05:24:48 +0000 |
commit | 290ee99712eca51bb42b8b3e3eef2190c37cdd1d (patch) | |
tree | ec402a036d6eae1d884ba14b8a89023e65edb9b9 /old | |
parent | 3008ad90f45e82a7722e03edb1131697d2602398 (diff) | |
download | coreutils-290ee99712eca51bb42b8b3e3eef2190c37cdd1d.tar.xz |
.
Diffstat (limited to 'old')
-rw-r--r-- | old/textutils/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index 1a51c72fd..a2727b1fb 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -1,3 +1,22 @@ +1996-12-12 Paul Eggert <eggert@twinsun.com> + + * 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 <meyering@na-net.ornl.gov> * src/sort.c (usage): Clarify description of -u option. |