diff options
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h index 6f85f85e795..5f18901a17c 100644 --- a/src/frame.h +++ b/src/frame.h @@ -624,7 +624,7 @@ fset_desired_tool_bar_string (struct frame *f, Lisp_Object val) INLINE double NUMVAL (Lisp_Object x) { - return NUMBERP (x) ? extract_float (x) : -1; + return NUMBERP (x) ? XFLOATINT (x) : -1; } INLINE double |