Hans Lermen wrote:
> On Wed, 9 Dec 1998, Bob Sully wrote:
> > Error in /var/lib/dosemu/global.conf: (line 263)
> Should be the same bug as the below fix refers to.
> On Mon, 7 Dec 1998 [EMAIL PROTECTED] wrote:
>
> > $_X_winsize = (800,600)
> >
> > gives a parse-error in that line of dosemu.conf, and other tries like
>
> Thanks, you found a bug, please apply the following patch
>
> --- global.conf~ Sun Dec 6 14:11:33 1998
> +++ global.conf Tue Dec 8 22:45:36 1998
> @@ -260,7 +261,7 @@
> if (strlen($_X_font)) $_X_font = 'font "', $_X_font, '"'; endif
>
> if (strlen($_X_winsize))
> - $xxx = strstr($_X_winsize,",")
> + $xxx = (strstr($_X_winsize,","))
> $_X_winsize = "winsize (", strdel($_X_winsize,$xxx,999), ") , (",
> strsplit($_X_winsize,$xxx+1,999), ")"
> endif
>
Hi, I think we have a problem with the font-statement to;
maybe that an analogous patch would work.
Reinhard