summaryrefslogtreecommitdiff
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-03-11 07:13:24 +0000
committerJim Blandy <jimb@redhat.com>1993-03-11 07:13:24 +0000
commit0c10045b40f26a88b28d057d649a22cce9ab12f2 (patch)
tree1e0d00a06cc172324e2c56cab2cfba0824d0dabb /src/floatfns.c
parent973c2a7894a87b94eed9b3148ca49f70ee88f63b (diff)
downloademacs-0c10045b40f26a88b28d057d649a22cce9ab12f2.tar.gz
* floatfns.c (Flogb): Undo the change of Feb 22.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index 760b7449387..5ae4379c1be 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -615,15 +615,21 @@ DEFUN ("float", Ffloat, Sfloat, 1, 1, 0,
}
DEFUN ("logb", Flogb, Slogb, 1, 1, 0,
- "Returns the integer that is the base 2 log of ARG.\n\
+ "Returns the integer not greater than the base 2 log of the magnitude of ARG.\n\
This is the same as the exponent of a float.")
(arg)
Lisp_Object arg;
{
- /* System V apparently doesn't have a `logb' function. It might be
- better to use it on systems that have it, but Ultrix (at least)
- doesn't declare it properly in <math.h>; does anyone really care? */
- return Flog (arg, make_number (2));
+#ifdef USG
+ error ("SYSV apparently doesn't have a logb function; what to do?");
+#else
+ Lisp_Object val;
+ double f = extract_float (num);
+
+ IN_FLOAT (val = logb (f), num);
+ XSET (val, Lisp_Int, val);
+ return val;
+#endif
}
/* the rounding functions */