More work on extract in record control.
[idzebra-moved-to-github.git] / index / kcompare.c
index bb37339..b39535d 100644 (file)
@@ -4,7 +4,14 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: kcompare.c,v $
- * Revision 1.5  1995-09-11 13:09:34  adam
+ * Revision 1.7  1995-09-27 12:22:28  adam
+ * More work on extract in record control.
+ * Field name is not in isam keys but in prefix in dictionary words.
+ *
+ * Revision 1.6  1995/09/14  07:48:23  adam
+ * Record control management.
+ *
+ * Revision 1.5  1995/09/11  13:09:34  adam
  * More work on relevance feedback.
  *
  * Revision 1.4  1995/09/08  14:52:27  adam
@@ -39,11 +46,7 @@ void key_logdump (int logmask, const void *p)
     struct it_key key;
 
     memcpy (&key, p, sizeof(key));
-#if IT_KEY_HAVE_SEQNO
-    logf (logmask, "%7d s=%-3d", key.sysno, key.seqno);
-#else
-    logf (logmask, "%7d f=%-3d", key.sysno, key.freq);
-#endif
+    logf (logmask, "%7d s=%-4d", key.sysno, key.seqno);
 }
 
 int key_compare (const void *p1, const void *p2)
@@ -75,15 +78,6 @@ int key_compare (const void *p1, const void *p2)
             return -1;
     }
 #endif
-#if IT_KEY_HAVE_FIELD
-    if (i1.field != i2.field)
-    {
-        if (i1.field > i2.field)
-            return 1;
-        else
-            return -1;
-    }
-#endif
     return 0;
 }