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:
parent
49daa5b162
commit
2231a9e22d
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue