comparison src/floatfns.c @ 67496:199bdb85a35f

(Flog): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sun, 11 Dec 2005 05:09:00 +0000
parents 3529fe766935
children 3bd95f4f2941 7beb78bc1f8e
comparison
equal deleted inserted replaced
67495:5a3907cc23fc 67496:199bdb85a35f
506 return make_float (f1); 506 return make_float (f1);
507 } 507 }
508 508
509 DEFUN ("log", Flog, Slog, 1, 2, 0, 509 DEFUN ("log", Flog, Slog, 1, 2, 0,
510 doc: /* Return the natural logarithm of ARG. 510 doc: /* Return the natural logarithm of ARG.
511 If second optional argument BASE is given, return log ARG using that base. */) 511 If the optional argument BASE is given, return log ARG using that base. */)
512 (arg, base) 512 (arg, base)
513 register Lisp_Object arg, base; 513 register Lisp_Object arg, base;
514 { 514 {
515 double d = extract_float (arg); 515 double d = extract_float (arg);
516 516