From: Eli Zaretskii Date: Wed, 10 Feb 2021 16:10:17 +0000 (+0200) Subject: Bump FACE_CACHE_BUCKETS_SIZE to 1009 X-Git-Tag: emacs-28.0.90~3826 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9b0d76e93b1e72425f8ee67de5eea74520beb5dd;p=emacs.git Bump FACE_CACHE_BUCKETS_SIZE to 1009 * src/xfaces.c (FACE_CACHE_BUCKETS_SIZE): Make it 1009, a prime number, per the comment. Reported by Win Treese . --- diff --git a/src/xfaces.c b/src/xfaces.c index 12087138e51..4b020001c31 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -289,7 +289,7 @@ along with GNU Emacs. If not, see . */ /* Size of hash table of realized faces in face caches (should be a prime number). */ -#define FACE_CACHE_BUCKETS_SIZE 1001 +#define FACE_CACHE_BUCKETS_SIZE 1009 char unspecified_fg[] = "unspecified-fg", unspecified_bg[] = "unspecified-bg";