From 4820c85bdef7810a62e0680df454547a53579311 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 28 Nov 2002 00:37:08 +0000 Subject: [PATCH] * 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. --- lib/ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ChangeLog b/lib/ChangeLog index 3c12748ab0..68b5ed9392 100644 --- 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. -- 2.30.2