comparison src/editfns.c @ 102724:5dfe0cbf0e1b

(Ffloat_time): Doc fix (Bug#2768).
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 24 Mar 2009 17:37:58 +0000
parents aa16e7d76321
children ec3ec7f5d54e
comparison
equal deleted inserted replaced
102723:9152b204a192 102724:5dfe0cbf0e1b
1562 1562
1563 DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0, 1563 DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
1564 doc: /* Return the current time, as a float number of seconds since the epoch. 1564 doc: /* Return the current time, as a float number of seconds since the epoch.
1565 If SPECIFIED-TIME is given, it is the time to convert to float 1565 If SPECIFIED-TIME is given, it is the time to convert to float
1566 instead of the current time. The argument should have the form 1566 instead of the current time. The argument should have the form
1567 (HIGH LOW . IGNORED). Thus, you can use times obtained from 1567 (HIGH LOW) or (HIGH LOW USEC). Thus, you can use times obtained from
1568 `current-time' and from `file-attributes'. SPECIFIED-TIME can also 1568 `current-time' and from `file-attributes'. SPECIFIED-TIME can also
1569 have the form (HIGH . LOW), but this is considered obsolete. 1569 have the form (HIGH . LOW), but this is considered obsolete.
1570 1570
1571 WARNING: Since the result is floating point, it may not be exact. 1571 WARNING: Since the result is floating point, it may not be exact.
1572 Do not use this function if precise time stamps are required. */) 1572 Do not use this function if precise time stamps are required. */)