mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 22:40:34 +02:00
Move comment about trig functions back where it belongs
* libguile/numbers.c: Move a comment about the trigonometric functions next to those functions. At some point they became separated, when scm_expt was placed between them.
This commit is contained in:
parent
5e7918077a
commit
7f41099e99
1 changed files with 6 additions and 6 deletions
|
@ -6692,12 +6692,6 @@ SCM_PRIMITIVE_GENERIC (scm_ceiling, "ceiling", 1, 0, 0,
|
||||||
}
|
}
|
||||||
#undef FUNC_NAME
|
#undef FUNC_NAME
|
||||||
|
|
||||||
/* sin/cos/tan/asin/acos/atan
|
|
||||||
sinh/cosh/tanh/asinh/acosh/atanh
|
|
||||||
Derived from "Transcen.scm", Complex trancendental functions for SCM.
|
|
||||||
Written by Jerry D. Hedden, (C) FSF.
|
|
||||||
See the file `COPYING' for terms applying to this program. */
|
|
||||||
|
|
||||||
SCM_PRIMITIVE_GENERIC (scm_expt, "expt", 2, 0, 0,
|
SCM_PRIMITIVE_GENERIC (scm_expt, "expt", 2, 0, 0,
|
||||||
(SCM x, SCM y),
|
(SCM x, SCM y),
|
||||||
"Return @var{x} raised to the power of @var{y}.")
|
"Return @var{x} raised to the power of @var{y}.")
|
||||||
|
@ -6739,6 +6733,12 @@ SCM_PRIMITIVE_GENERIC (scm_expt, "expt", 2, 0, 0,
|
||||||
}
|
}
|
||||||
#undef FUNC_NAME
|
#undef FUNC_NAME
|
||||||
|
|
||||||
|
/* sin/cos/tan/asin/acos/atan
|
||||||
|
sinh/cosh/tanh/asinh/acosh/atanh
|
||||||
|
Derived from "Transcen.scm", Complex trancendental functions for SCM.
|
||||||
|
Written by Jerry D. Hedden, (C) FSF.
|
||||||
|
See the file `COPYING' for terms applying to this program. */
|
||||||
|
|
||||||
SCM_PRIMITIVE_GENERIC (scm_sin, "sin", 1, 0, 0,
|
SCM_PRIMITIVE_GENERIC (scm_sin, "sin", 1, 0, 0,
|
||||||
(SCM z),
|
(SCM z),
|
||||||
"Compute the sine of @var{z}.")
|
"Compute the sine of @var{z}.")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue