Mercurial > emacs
comparison src/floatfns.c @ 1715:cd23f7ef1bd0
* floatfns.c (Flog): Fix unescaped newline in string.
* frame.c (Fnext_frame): Same.
* textprop.c (Fprevious_single_property_change): Same.
(syms_of_textprop): Same, for DEFVAR for
`interval_balance_threshold'.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Thu, 24 Dec 1992 06:16:01 +0000 |
| parents | bef6b6903528 |
| children | 699ae3079c09 |
comparison
equal
deleted
inserted
replaced
| 1714:2a1dbc7de507 | 1715:cd23f7ef1bd0 |
|---|---|
| 300 IN_FLOAT (f1 = pow (f1, f2), num1); | 300 IN_FLOAT (f1 = pow (f1, f2), num1); |
| 301 return make_float (f1); | 301 return make_float (f1); |
| 302 } | 302 } |
| 303 | 303 |
| 304 DEFUN ("log", Flog, Slog, 1, 2, 0, | 304 DEFUN ("log", Flog, Slog, 1, 2, 0, |
| 305 "Return the natural logarithm of NUM. | 305 "Return the natural logarithm of NUM.\n\ |
| 306 If second optional argument BASE is given, return log NUM using that base.") | 306 If second optional argument BASE is given, return log NUM using that base.") |
| 307 (num, base) | 307 (num, base) |
| 308 register Lisp_Object num, base; | 308 register Lisp_Object num, base; |
| 309 { | 309 { |
| 310 double d = extract_float (num); | 310 double d = extract_float (num); |
