\e escape sequence

Posted by Nick Cash on Mon 19 Dec 2005 08:37 PM — 3 posts, 22,151 views.

USA #0
I was messing around with colors today and I keep getting this warning:

warning: non-ISO-standard escape sequence, '\e'

I compile with the pedantic flag, which is the souce of this warning. Any way to get rid of the warning (not that it really bothers anything besides me) and keep the pedantic flag?
USA #1
Use \033 instead. \e is a GNU shortcut.
USA #2
Thanks :)