From: Stefan Monnier Date: Wed, 5 Nov 2003 16:45:11 +0000 (+0000) Subject: (Flogb): Don't use VALMASK. X-Git-Tag: ttn-vms-21-2-B4~8413 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b916d6722a2265cb82b5af2ff8f040cd2561db38;p=emacs.git (Flogb): Don't use VALMASK. --- diff --git a/src/floatfns.c b/src/floatfns.c index 84a2dac7df6..61879eabe39 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -1,5 +1,5 @@ /* Primitive operations on floating point for GNU Emacs Lisp interpreter. - Copyright (C) 1988, 1993, 1994, 1999 Free Software Foundation, Inc. + Copyright (C) 1988, 1993, 1994, 1999, 2003 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -692,7 +692,7 @@ This is the same as the exponent of a float. */) double f = extract_float (arg); if (f == 0.0) - value = -(VALMASK >> 1); + value = MOST_NEGATIVE_FIXNUM; else { #ifdef HAVE_LOGB