diff options
| author | Juanma Barranquero | 2003-02-04 14:56:31 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-02-04 14:56:31 +0000 |
| commit | 177c0ea74342272645959b82cf219faa0b3dba16 (patch) | |
| tree | 44e22b210a9904eab25a66d12e708804b671df75 /src/floatfns.c | |
| parent | db95369be096960245dd38678f68464627698678 (diff) | |
| download | emacs-177c0ea74342272645959b82cf219faa0b3dba16.tar.gz emacs-177c0ea74342272645959b82cf219faa0b3dba16.zip | |
Trailing whitespace deleted.
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 08405c307a7..b7d6412fdbf 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -468,7 +468,7 @@ DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0, | |||
| 468 | x = XINT (arg1); | 468 | x = XINT (arg1); |
| 469 | y = XINT (arg2); | 469 | y = XINT (arg2); |
| 470 | acc = 1; | 470 | acc = 1; |
| 471 | 471 | ||
| 472 | if (y < 0) | 472 | if (y < 0) |
| 473 | { | 473 | { |
| 474 | if (x == 1) | 474 | if (x == 1) |
| @@ -992,7 +992,7 @@ float_error (signo) | |||
| 992 | #endif /* FLOAT_CATCH_SIGILL */ | 992 | #endif /* FLOAT_CATCH_SIGILL */ |
| 993 | 993 | ||
| 994 | #ifdef HAVE_MATHERR | 994 | #ifdef HAVE_MATHERR |
| 995 | int | 995 | int |
| 996 | matherr (x) | 996 | matherr (x) |
| 997 | struct exception *x; | 997 | struct exception *x; |
| 998 | { | 998 | { |
| @@ -1026,7 +1026,7 @@ init_floatfns () | |||
| 1026 | { | 1026 | { |
| 1027 | #ifdef FLOAT_CATCH_SIGILL | 1027 | #ifdef FLOAT_CATCH_SIGILL |
| 1028 | signal (SIGILL, float_error); | 1028 | signal (SIGILL, float_error); |
| 1029 | #endif | 1029 | #endif |
| 1030 | in_float = 0; | 1030 | in_float = 0; |
| 1031 | } | 1031 | } |
| 1032 | 1032 | ||