>From 85ab40130e7b48ecccd47b3b37c11385a4560691 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Wed, 26 Jan 2011 15:13:29 -0500 Subject: [PATCH] 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. --- libguile/numbers.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libguile/numbers.c b/libguile/numbers.c index 9ff8e41..480d326 100644 --- a/libguile/numbers.c +++ b/libguile/numbers.c @@ -5495,12 +5495,6 @@ SCM_PRIMITIVE_GENERIC (scm_ceiling, "ceiling", 1, 0, 0, } #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_DEFINE (scm_expt, "expt", 2, 0, 0, (SCM x, SCM y), "Return @var{x} raised to the power of @var{y}.") @@ -5538,6 +5532,12 @@ SCM_DEFINE (scm_expt, "expt", 2, 0, 0, } #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 z), "Compute the sine of @var{z}.") -- 1.5.6.5