From d925b561647f36913f6d24b9fdf99d97a400528c Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Tue, 8 May 2007 06:59:26 -0700
Subject: [PATCH] Don't display slots for target words less than 5 letters long

It was just too overwhelming to see dozens of 3- and 4-letter words
every time. It's now actually feasible to try to get all the words
when you've only got the 5-, 6-, and 7-letter words to attempt.
---
 rack-fancy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rack-fancy.c b/rack-fancy.c
index a8578cc..2a60f88 100644
--- a/rack-fancy.c
+++ b/rack-fancy.c
@@ -98,7 +98,7 @@ dict_paint_action (void *closure, char *word, dict_entry_t *entry)
     double new_x, new_y;
     int found, show_blanks = FALSE;
 
-    if (strlen (word) < 3)
+    if (strlen (word) < 5)
 	return;
 
     found = *entry & RACK_DICT_ENTRY_FOUND;
-- 
2.45.2