Fixed the PACK() macro.

This commit is contained in:
Werner Lemberg 2000-06-14 04:13:59 +00:00
parent 7a4fda8821
commit 67d301f305
1 changed files with 2 additions and 2 deletions

View File

@ -947,8 +947,8 @@
/* a macro comparing two cell pointers. Returns true if a <= b. */
#if 1
#define PACK( a ) ( ( (long)(a)->y << 16 ) | (a)->x )
#define LESS_THAN( a, b ) ( PACK(a) < PACK(b) )
#define PACK( a ) ( ( (long)(a)->y << 16 ) + (a)->x )
#define LESS_THAN( a, b ) ( PACK( a ) < PACK( b ) )
#else /* 1 */
#define LESS_THAN( a, b ) ( (a)->y < (b)->y || \
( (a)->y == (b)->y && (a)->x < (b)->x ) )