Mercurial > emacs
changeset 67506:b23a7ce63153
(EQ): Use == so args are computed just once.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 11 Dec 2005 15:35:51 +0000 |
parents | 51053176f6b7 |
children | a2a9e8afb055 |
files | src/lisp.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lisp.h Sun Dec 11 15:35:14 2005 +0000 +++ b/src/lisp.h Sun Dec 11 15:35:51 2005 +0000 @@ -454,7 +454,7 @@ extern Lisp_Object make_number P_ ((EMACS_INT)); #endif -#define EQ(x, y) ((x).s.val == (y).s.val && (x).s.type == (y).s.type) +#define EQ(x, y) ((x).i == (y).i) #endif /* NO_UNION_TYPE */