[DGD]ansi again (sorry Erwin)

Neil McBride neil at ekit-inc.com
Tue Sep 19 05:21:21 CEST 2000


Imo Wright wrote:
> 
> >C) The easiest; go find this piece of code in comm.c...[etc]
> 
> I tried this, but it still won't read my escapes...would it be possible to
> put the escape function itself in there, as nothing seems to read '\033' as
> relevant, not telnet, tinyfugue, tintin, zmud or a plain old file morer.
> I'm at a loss here :)

If you're using the network package, you'll need to apply the change to
the comm.net.c file as the comm.c file is ignored when using the network
package.

The line is the same in each file and should go from looking like this:
-

} else if ((*p & 0x7f) < ' ' && *p != HT && *p != BEL && *p != BS) {

to looking like this: -

} else if ((*p & 0x7f) < ' ' && *p != HT && *p != BEL && *p != BS && *p
!= '\033') {

Hope that helps,

Neil.

List config page:  http://list.imaginary.com/mailman/listinfo/dgd



More information about the DGD mailing list