Re: [fpc-pascal] Re: undefining multiple defines

2005-03-03 Thread Marc Santhoff
Am Do, den 03.03.2005 schrieb Jeff Pohlmeyer um 10:45: > > unit b; > > ... > > {$undef M1-M15} > > {$define M2} > > ... > > end. > > > Can't you just put all your $undef's in a *.inc file, > and then $include it anywhere you need to undef all? > > unit b; > ... > {$include undefs.inc} > {$define

[fpc-pascal] Re: undefining multiple defines

2005-03-03 Thread Jeff Pohlmeyer
> unit b; > ... > {$undef M1-M15} > {$define M2} > ... > end. Can't you just put all your $undef's in a *.inc file, and then $include it anywhere you need to undef all? unit b; ... {$include undefs.inc} {$define M2} ... end. -- _