Mercurial > hg > xemacs-beta
diff src/lisp.h @ 199:169c0442b401 r20-3b26
Import from CVS: tag r20-3b26
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:00:33 +0200 |
parents | a2f645c6b9f8 |
children | eb5470882647 |
line wrap: on
line diff
--- a/src/lisp.h Mon Aug 13 10:00:04 2007 +0200 +++ b/src/lisp.h Mon Aug 13 10:00:33 2007 +0200 @@ -72,10 +72,10 @@ as 'macros.h' under Solaris.) */ #ifndef min -#define min(a,b) ((a) <= (b) ? (a) : (b)) +#define min(a,b) (((a) <= (b)) ? (a) : (b)) #endif #ifndef max -#define max(a,b) ((a) > (b) ? (a) : (b)) +#define max(a,b) (((a) > (b)) ? (a) : (b)) #endif /* Emacs needs to use its own definitions of certain system calls on