Index: views_fastsearch.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_fastsearch/views_fastsearch.module,v
retrieving revision 1.2.2.10
diff -u -F^f -r1.2.2.10 views_fastsearch.module
--- views_fastsearch.module	28 Mar 2007 14:14:35 -0000	1.2.2.10
+++ views_fastsearch.module	25 Apr 2007 14:37:50 -0000
@@ -75,6 +75,11 @@ function views_fastsearch_views_handler_
       $values = explode(' ', $filter['value']);
       $word_count = 0;
       foreach ($values as $value) {
+        // throw out too small words
+        if (drupal_strlen($value) < variable_get('minimum_word_size', 3)) {
+          continue;
+        }
+        
         $word_count ++;
         // OR applies to the next value only
         $upper_value = strtoupper($value);
