diff options
| author | Richard M. Stallman | 1993-08-13 00:46:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-08-13 00:46:48 +0000 |
| commit | d3fc9c800db36784f1660fa48c8e684a45022527 (patch) | |
| tree | dcca717c35a7f280bfb6a2226f7039d2c7f9f8ec /src | |
| parent | a069743544300a08e364acee4fb92f0458416ca4 (diff) | |
| download | emacs-d3fc9c800db36784f1660fa48c8e684a45022527.tar.gz emacs-d3fc9c800db36784f1660fa48c8e684a45022527.zip | |
(Flogb): Error at run time if not supported.
Diffstat (limited to 'src')
| -rw-r--r-- | src/floatfns.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 0e9003722d7..b51073b296e 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -647,7 +647,8 @@ This is the same as the exponent of a float.") | |||
| 647 | XSET (val, Lisp_Int, exp-1); | 647 | XSET (val, Lisp_Int, exp-1); |
| 648 | } | 648 | } |
| 649 | #else | 649 | #else |
| 650 | Well, what *do* you have? | 650 | /* Would someone like to write code to emulate logb? */ |
| 651 | error ("`logb' not implemented on this operating system"); | ||
| 651 | #endif | 652 | #endif |
| 652 | #endif | 653 | #endif |
| 653 | 654 | ||