Path: utzoo!attcan!uunet!husc6!mailrus!ncar!ames!pasteur!ucbvax!POSTGRES.BERKELEY.EDU!dillon
From: dillon@POSTGRES.BERKELEY.EDU (Matt Dillon)
Newsgroups: comp.sys.amiga
Subject: Re: Re: Bug in Lattice 5.0?
Message-ID: <8811281822.AA16718@postgres.Berkeley.EDU>
Date: 28 Nov 88 18:22:03 GMT
Sender: daemon@ucbvax.BERKELEY.EDU
Lines: 14

:>I found something interesting today while running an old project through
:>the new Lattice 5.0 compiler.
:>        AltColor = "\x9B0;33m"
:        AltColor = "\x9B" "0;33m"
:Or in a manner that is much more readable,
:   #define CSI "\x9B"
:        AltColor = CSI "0;33m"

	Uh, just use the octal escape sequence please ... 3 chars max
so this will do nicely:

	"\2330;33m"

				-Matt