diff --git a/src/zmapWindow/zmapWindowMenus.c b/src/zmapWindow/zmapWindowMenus.c
index 17b89a5081ad7da89741b38e9de881674b9e37f8..c199591433212672cc6c4f31f9d803c8e4465ff2 100755
--- a/src/zmapWindow/zmapWindowMenus.c
+++ b/src/zmapWindow/zmapWindowMenus.c
@@ -27,9 +27,9 @@
  * Exported functions: ZMap/zmapWindows.h
  *              
  * HISTORY:
- * Last edited: Aug  8 16:01 2006 (edgrif)
+ * Last edited: Oct 18 08:24 2006 (rds)
  * Created: Thu Mar 10 07:56:27 2005 (edgrif)
- * CVS info:   $Id: zmapWindowMenus.c,v 1.20 2006-08-10 15:16:27 edgrif Exp $
+ * CVS info:   $Id: zmapWindowMenus.c,v 1.21 2006-10-18 15:24:40 rds Exp $
  *-------------------------------------------------------------------
  */
 
@@ -82,9 +82,10 @@ static void insertSubMenus(GString *branch_point_string,
                            ZMapGUIMenuItem sub_menus,
                            ZMapGUIMenuItem item,
                            GArray **items_array);
-static void alignBlockMenusDataListForeach(GQuark key, 
-                                           gpointer data, 
-                                           gpointer user_data);
+static ZMapFeatureContextExecuteStatus alignBlockMenusDataListForeach(GQuark key, 
+                                                                      gpointer data, 
+                                                                      gpointer user_data,
+                                                                      char **error_out);
 
 
 
@@ -134,10 +135,6 @@ ZMapGUIMenuItem zmapWindowMakeMenuBump(int *start_index_inout,
       {ZMAPGUI_MENU_NONE, NULL, 0, NULL, NULL}
     } ;
   ZMapGUIMenuItem item ;
-#ifdef ED_G_NEVER_INCLUDE_THIS_CODE
-  ItemMenuCBData menu_data = (ItemMenuCBData)callback_data ;
-#endif /* ED_G_NEVER_INCLUDE_THIS_CODE */
-
 
   /* Set the initial toggle button correctly....make sure this stays in step with the array above.
    * NOTE logic, this button is either "no bump" or "Name + No Overlap", the latter should be
@@ -1036,9 +1033,10 @@ static void insertSubMenus(GString *branch_point_string,
 }
 
 
-static void alignBlockMenusDataListForeach(GQuark key, 
-                                           gpointer data, 
-                                           gpointer user_data)
+static ZMapFeatureContextExecuteStatus alignBlockMenusDataListForeach(GQuark key, 
+                                                                      gpointer data, 
+                                                                      gpointer user_data,
+                                                                      char **error_out)
 {
   ZMapFeatureAny feature_any = (ZMapFeatureAny)data;
   ZMapFeatureStructType feature_type = ZMAPFEATURE_STRUCT_INVALID;
@@ -1124,7 +1122,7 @@ static void alignBlockMenusDataListForeach(GQuark key,
 
   g_free(item);
 
-  return ;
+  return ZMAP_CONTEXT_EXEC_STATUS_OK;
 }
 
 
diff --git a/src/zmapWindow/zmapWindowSearch.c b/src/zmapWindow/zmapWindowSearch.c
index eba75ca6f35547de3b7903364065827e8f68ec61..84f4003871c6797d327057be13eb679ad7c362ac 100755
--- a/src/zmapWindow/zmapWindowSearch.c
+++ b/src/zmapWindow/zmapWindowSearch.c
@@ -28,9 +28,9 @@
  *              
  * Exported functions: See zmapWindow_P.h
  * HISTORY:
- * Last edited: Sep 22 12:20 2006 (edgrif)
+ * Last edited: Sep 26 10:42 2006 (rds)
  * Created: Fri Aug 12 16:53:21 2005 (edgrif)
- * CVS info:   $Id: zmapWindowSearch.c,v 1.16 2006-09-26 08:51:21 edgrif Exp $
+ * CVS info:   $Id: zmapWindowSearch.c,v 1.17 2006-10-18 15:25:23 rds Exp $
  *-------------------------------------------------------------------
  */
 
@@ -138,6 +138,8 @@ static void fetchAllComboLists(ZMapFeatureAny feature_any,
                                GList **align_list_out,
                                GList **block_list_out,
                                GList **set_list_out);
+static ZMapFeatureContextExecuteStatus fillAllComboList(GQuark key, gpointer data, 
+                                                        gpointer user_data, char **err_out);
 
 static GList *getStyleQuarks(GList *styles) ;
 static void getQuark(gpointer data, gpointer user_data) ;
@@ -962,7 +964,8 @@ static GtkWidget *createPopulateComboBox(GList *list, gboolean quarks)
   return combo;
 }
 
-static void fillAllComboList(GQuark key, gpointer data, gpointer user_data)
+static ZMapFeatureContextExecuteStatus fillAllComboList(GQuark key, gpointer data, 
+                                                        gpointer user_data, char **err_out)
 {
   ZMapFeatureAny feature_any = (ZMapFeatureAny)data;
   AllComboLists all_data = (AllComboLists)user_data;
@@ -994,7 +997,7 @@ static void fillAllComboList(GQuark key, gpointer data, gpointer user_data)
       break;
     }
 
-  return ;
+  return ZMAP_CONTEXT_EXEC_STATUS_OK;
 }
 
 static void fetchAllComboLists(ZMapFeatureAny feature_any,