--- parserm.h.orig 2004-03-02 00:51:41.000000000 -0800 +++ parserm.h 2011-12-20 01:50:42.000000000 -0800 @@ -52,6 +52,10 @@ Include "linklpa"; #Endif; ! MODULE_MODE +#Ifdef COLOR; +Constant COLOUR; +#Endif; + ! ------------------------------------------------------------------------------ ! Global variables and their associated Constant and Array declarations ! ------------------------------------------------------------------------------ @@ -5477,8 +5481,13 @@ [ MoveCursor line column; ! 1-based postion on text grid if (~~statuswin_current) { @set_window 1; +#Ifdef COLOUR; if (clr_on && clr_bgstatus > 1) @set_colour clr_fgstatus clr_bgstatus; else style reverse; +#Ifnot; +style reverse; +#Endif; + } if (line == 0) { line = 1; @@ -5495,8 +5504,12 @@ [ MainWindow; if (statuswin_current) { +#Ifdef COLOUR; if (clr_on && clr_bgstatus > 1) @set_colour clr_fg clr_bg; else style roman; +#Ifnot; +style roman; +#Endif; @set_window 0; } statuswin_current = false; @@ -5559,10 +5572,12 @@ clr_fg = f; clr_bg = b; } +#Ifdef COLOUR; if (statuswin_current) @set_colour clr_fgstatus clr_bgstatus; else @set_colour clr_fg clr_bg; +#Endif; } ];