aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-06-18 17:11:45 -0700
committerPaul Eggert <[email protected]>2011-06-18 17:11:45 -0700
commitcbeff735d291da31ca3c5ae61d2c5698b62b26e8 (patch)
tree6d9ff402aa33971f23e83e6b9fe4b3b5cde44906 /src/lisp.h
parent9f62aeb1857ab012244be221b1e6e13451fb394d (diff)
* lisp.h (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 54c509125f..99a276c805 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -3625,9 +3625,7 @@ extern void init_system_name (void);
fixnum. */
#define make_fixnum_or_float(val) \
- (FIXNUM_OVERFLOW_P (val) \
- ? make_float (val) \
- : make_number ((EMACS_INT)(val)))
+ (FIXNUM_OVERFLOW_P (val) ? make_float (val) : make_number (val))
/* Checks the `cycle check' variable CHECK to see if it indicates that