--- old/pc/gawkw32.def Sun Jun 29 08:55:47 2003 +++ pc/gawkw32.def Thu Jul 22 20:13:26 2004 @@ -9,6 +9,7 @@ get_argument @1 set_value @2 make_builtin @3 +get_curfunc_arg_count @4 ;; functions for manipulating data types mk_number @11 --- old/re.c Thu Jul 15 05:51:34 2004 +++ re.c Wed Jul 21 21:06:46 2004 @@ -172,13 +172,17 @@ * discussion by the definition of casetable[] in eval.c. */ if (ignorecase) { +#ifdef MBS_SUPPORT if (gawk_mb_cur_max > 1) { syn |= RE_ICASE; rp->pat.translate = NULL; } else { +#endif syn &= ~RE_ICASE; rp->pat.translate = (char *) casetable; +#ifdef MBS_SUPPORT } +#endif } else { rp->pat.translate = NULL; syn &= ~RE_ICASE;