diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-03-11 07:22:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-03-11 07:22:49 +0000 |
commit | 6628c5eaa00d29312b3b975e9f2e6babf1d17647 (patch) | |
tree | cab104f011d63f141c5ddad29ebd3fb5cc3c22ff | |
parent | 9658a5216ede5c618c3ca113635092d064208533 (diff) | |
download | emacs-6628c5eaa00d29312b3b975e9f2e6babf1d17647.tar.gz |
(Flogb): Fix use of IN_FLOAT.
-rw-r--r-- | src/floatfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 5ae4379c1be..fb6030f69e3 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -626,7 +626,7 @@ This is the same as the exponent of a float.") Lisp_Object val; double f = extract_float (num); - IN_FLOAT (val = logb (f), num); + IN_FLOAT (val = logb (f), "logb", num); XSET (val, Lisp_Int, val); return val; #endif |