# HG changeset patch # User Paul Eggert # Date 1038443828 0 # Node ID 8c8f0566f03c1af9b8d81d4cfd8a4d55b835ec94 # Parent 0546d7f367dbd40ccd3dd8320841a076db291ae8 * hash.c (hash_lookup, hash_get_first, hash_get_next, hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();' with `if (! (value < limit)) abort ();', for readability. diff --git a/lib/ChangeLog b/lib/ChangeLog --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,9 @@ +2002-11-27 Paul Eggert + + * hash.c (hash_lookup, hash_get_first, hash_get_next, hash_find_entry, + hash_rehash): Replace `if (limit <= value) abort ();' with + `if (! (value < limit)) abort ();', for readability. + 2002-11-26 * strdup.c: copy from libc again, with jim's ok.