*** - Fri Jun 30 10:34:48 2000 --- epic4pre2.511/source/parse.c Fri Jun 30 10:29:53 2000 *************** *** 510,516 **** void add_user_end (char *from, char **ArgList) { ! channel_not_waiting(ArgList[1], from_server); } static void p_channel (char *from, char **ArgList) --- 510,516 ---- void add_user_end (char *from, char **ArgList) { ! channel_not_waiting(ArgList[0], from_server); } static void p_channel (char *from, char **ArgList) *** - Fri Jun 30 10:34:49 2000 --- epic4pre2.511/source/window.c Thu Jun 29 11:27:14 2000 *************** *** 1029,1036 **** say("Can't change the size of this window!"); return; } } ! while (other->absolute_size || other->display_size < offset); if (how == RESIZE_REL) --- 1029,1042 ---- say("Can't change the size of this window!"); return; } + + if (other->absolute_size) + continue; + + if (how == RESIZE_ABS) + break; /* XXX */ } ! while (other->display_size < offset); if (how == RESIZE_REL) *** - Fri Jun 30 10:34:50 2000 --- epic4pre2.511/source/who.c Thu Jun 29 11:28:42 2000 *************** *** 312,323 **** malloc_strcpy(&new_w->who_nick, arg); channel = new_w->who_nick; } - else if (!strncmp(arg, "d", 1)) - { - who_queue_list(); - delete_who_item(new_w); - return; - } else if (!strncmp(arg, "f", 1)) { who_queue_flush(); --- 312,317 ---- *************** *** 336,341 **** --- 330,341 ---- new_w->dalnet_extended_args = new_next_arg(args, &args); channel = args; /* Grab the rest of args */ args = NULL; + } + else if (!strncmp(arg, "d", 1)) + { + who_queue_list(); + delete_who_item(new_w); + return; } else { *** - Fri Jun 30 10:34:50 2000 --- epic4pre2.511/KNOWNBUGS Fri Jun 30 10:34:32 2000 *************** *** 4,19 **** ------------------------------------------------ * Put up the third party ipv6 patch for epic4-2000 for ftp. * Put up the third party ssl patch for epic4-2000 for ftp. - * Wc saw a problem with 510 losing track of +tn channel modes on #texas [See http://www.epicsol.org/PROJECTS for things to come in the future] [See http://www.epicsol.org/CHANGELOG for things that changed in the past] THE CHANGELOG SINCE THE LAST RELEASE: ------------------------------------- ! * Begin to de-bogofy $getopt(). Watch this. ! * Finish de-bogofying $getopt() -- looks like it works fine now! ! /eval echo $getopt(optopt optarg "abc" $repeat(100 words )) ! * Support for undernet's new /WHO request flags. /who -ux ! * Support for Dalnet's new /WHO request flags. /who -dx ! * Fix for Bruce DeVisser's /help bug (Robohak) --- 4,15 ---- ------------------------------------------------ * Put up the third party ipv6 patch for epic4-2000 for ftp. * Put up the third party ssl patch for epic4-2000 for ftp. [See http://www.epicsol.org/PROJECTS for things to come in the future] [See http://www.epicsol.org/CHANGELOG for things that changed in the past] THE CHANGELOG SINCE THE LAST RELEASE: ------------------------------------- ! * Fix /who so /who -dx doesn't slurped up by /who -d (Robohak) ! * Fix so /window size works in more situations than before (rb jmd) ! * Fix introduced by /on channel_sync that caused modes to get lost