Mercurial > emacs
comparison src/floatfns.c @ 13442:7609e8a05862
Fexpt): Doc fix.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 10 Nov 1995 04:29:21 +0000 |
| parents | 941c37982f37 |
| children | 621a575db6f7 |
comparison
equal
deleted
inserted
replaced
| 13441:3d2e58f4385f | 13442:7609e8a05862 |
|---|---|
| 427 IN_FLOAT (d = exp (d), "exp", arg); | 427 IN_FLOAT (d = exp (d), "exp", arg); |
| 428 return make_float (d); | 428 return make_float (d); |
| 429 } | 429 } |
| 430 | 430 |
| 431 DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0, | 431 DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0, |
| 432 "Return the exponential X ** Y.") | 432 "Return the exponential ARG1 ** ARG2.") |
| 433 (arg1, arg2) | 433 (arg1, arg2) |
| 434 register Lisp_Object arg1, arg2; | 434 register Lisp_Object arg1, arg2; |
| 435 { | 435 { |
| 436 double f1, f2; | 436 double f1, f2; |
| 437 | 437 |
