diff options
| author | Vincent Belaïche | 2016-07-28 18:12:50 +0200 |
|---|---|---|
| committer | Vincent Belaïche | 2016-07-28 18:12:50 +0200 |
| commit | 90ab699c4f281d0c9a9b71f3eb4c8493d00fcf4f (patch) | |
| tree | df3235d89ee8e4d32571b8a8521f75f7576913c2 /src/floatfns.c | |
| parent | 41b28dea8587c13b0bc59c1ec70b65afab3aeeca (diff) | |
| parent | ec359399a47f852b4d022a30245449438e349193 (diff) | |
| download | emacs-90ab699c4f281d0c9a9b71f3eb4c8493d00fcf4f.tar.gz emacs-90ab699c4f281d0c9a9b71f3eb4c8493d00fcf4f.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index c1bd25877e3..f514fcbea8c 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -185,8 +185,8 @@ If X is zero, both parts (SGNFCAND and EXP) are zero. */) | |||
| 185 | } | 185 | } |
| 186 | 186 | ||
| 187 | DEFUN ("ldexp", Fldexp, Sldexp, 2, 2, 0, | 187 | DEFUN ("ldexp", Fldexp, Sldexp, 2, 2, 0, |
| 188 | doc: /* Return X * 2**EXP, as a floating point number. | 188 | doc: /* Return SGNFCAND * 2**EXPONENT, as a floating point number. |
| 189 | EXP must be an integer. */) | 189 | EXPONENT must be an integer. */) |
| 190 | (Lisp_Object sgnfcand, Lisp_Object exponent) | 190 | (Lisp_Object sgnfcand, Lisp_Object exponent) |
| 191 | { | 191 | { |
| 192 | CHECK_NUMBER (exponent); | 192 | CHECK_NUMBER (exponent); |