diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-03-02 09:21:19 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-03-02 09:22:17 -0800 |
commit | d0d26c1379598983d2163deb13ba8ab13b14ba2c (patch) | |
tree | 93e7cef298261c30eac66ec00b4250076d015419 /src/lisp.h | |
parent | 4e2622bf0d63c40f447d44e6401ea054ef55b261 (diff) | |
download | emacs-d0d26c1379598983d2163deb13ba8ab13b14ba2c.tar.gz emacs-d0d26c1379598983d2163deb13ba8ab13b14ba2c.tar.bz2 emacs-d0d26c1379598983d2163deb13ba8ab13b14ba2c.zip |
Remove XFLOATINT
* src/lisp.h (XFLOATINT): Remove this alias for extract_float.
All callers changed to use extract_float.
* src/frame.h (NUMVAL): Now an inline function, not a macro.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lisp.h b/src/lisp.h index a757dfdbb31..a9104110469 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2803,12 +2803,6 @@ CHECK_NATNUM (Lisp_Object x) CHECK_TYPE (INTEGERP (x), Qinteger_or_marker_p, x); \ } while (false) -INLINE double -XFLOATINT (Lisp_Object n) -{ - return extract_float (n); -} - INLINE void CHECK_NUMBER_OR_FLOAT (Lisp_Object x) { |