diff options
| author | Chong Yidong | 2012-01-21 23:52:46 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-01-21 23:52:46 +0800 |
| commit | 3c2907f7e83d2a324aca245b5cb1b8c84a1055e7 (patch) | |
| tree | 26bab7f142541d91463ba36a584078bd64a123a7 /src/floatfns.c | |
| parent | 7a22e700110b98363a940b14efa8ad5af57c29e2 (diff) | |
| download | emacs-3c2907f7e83d2a324aca245b5cb1b8c84a1055e7.tar.gz emacs-3c2907f7e83d2a324aca245b5cb1b8c84a1055e7.zip | |
Make second arg of copysign non-optional.
* src/floatfns.c (Fcopysign): Make the second argument non-optional,
since nil is not allowed anyway.
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index c44784f2120..305c78cae63 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -294,7 +294,7 @@ DEFUN ("isnan", Fisnan, Sisnan, 1, 1, 0, | |||
| 294 | } | 294 | } |
| 295 | 295 | ||
| 296 | #ifdef HAVE_COPYSIGN | 296 | #ifdef HAVE_COPYSIGN |
| 297 | DEFUN ("copysign", Fcopysign, Scopysign, 1, 2, 0, | 297 | DEFUN ("copysign", Fcopysign, Scopysign, 2, 2, 0, |
| 298 | doc: /* Copy sign of X2 to value of X1, and return the result. | 298 | doc: /* Copy sign of X2 to value of X1, and return the result. |
| 299 | Cause an error if X1 or X2 is not a float. */) | 299 | Cause an error if X1 or X2 is not a float. */) |
| 300 | (Lisp_Object x1, Lisp_Object x2) | 300 | (Lisp_Object x1, Lisp_Object x2) |