1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 19:10:37 -08:00

(EQ): Use == so args are computed just once.

This commit is contained in:
Richard M. Stallman 2005-12-11 15:35:51 +00:00
parent 49daa5b162
commit 2231a9e22d

View file

@ -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 */