# HG changeset patch # User Andrew Innes # Date 1002580746 0 # Node ID 45e11013c850e6cd63b1d97a5035d89e7e4b88cc # Parent 3c36ec9a8c277ab66409b12d05196deb7539b328 [max]: Undef min and max before redefining them. diff -r 3c36ec9a8c27 -r 45e11013c850 src/lisp.h --- a/src/lisp.h Mon Oct 08 22:33:43 2001 +0000 +++ b/src/lisp.h Mon Oct 08 22:39:06 2001 +0000 @@ -3078,5 +3078,9 @@ /* The ubiquitous min and max macros. */ +#ifdef max +#undef max +#undef min +#endif #define min(a, b) ((a) < (b) ? (a) : (b)) #define max(a, b) ((a) > (b) ? (a) : (b))