From: Richard M. Stallman Date: Sun, 11 Dec 2005 15:35:51 +0000 (+0000) Subject: (EQ): Use == so args are computed just once. X-Git-Tag: emacs-pretest-22.0.90~5339 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2231a9e22d476a05c5595febcd0fe0e6f2e9b8ff;p=emacs.git (EQ): Use == so args are computed just once. --- diff --git a/src/lisp.h b/src/lisp.h index ad5088da65f..b8213c516cb 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -454,7 +454,7 @@ enum pvec_type 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 */