diff options
| author | Richard M. Stallman | 1993-01-08 20:33:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-01-08 20:33:12 +0000 |
| commit | dbac6e3de7eef4ffd0d45f248b86f1da55b85ce2 (patch) | |
| tree | cab9216eff2b44fbb7554e02aafc09f9b1cc25dd /src/editfns.c | |
| parent | dffd3124175845d75c0b35c98a8f7c832137abcc (diff) | |
| download | emacs-dbac6e3de7eef4ffd0d45f248b86f1da55b85ce2.tar.gz emacs-dbac6e3de7eef4ffd0d45f248b86f1da55b85ce2.zip | |
Doc fixes.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/editfns.c b/src/editfns.c index 35697519bdb..d804bbb1032 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -532,8 +532,7 @@ resolution finer than a second.") | |||
| 532 | DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 0, 0, | 532 | DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 0, 0, |
| 533 | "Return the current time, as a human-readable string.\n\ | 533 | "Return the current time, as a human-readable string.\n\ |
| 534 | Programs can use it too, since the number of columns in each field is fixed.\n\ | 534 | Programs can use it too, since the number of columns in each field is fixed.\n\ |
| 535 | The format is `Sun Sep 16 01:03:52 1973'.\n\ | 535 | The format is `Sun Sep 16 01:03:52 1973'.") |
| 536 | In a future Emacs version, the time zone may be added at the end.") | ||
| 537 | () | 536 | () |
| 538 | { | 537 | { |
| 539 | long current_time = time ((long *) 0); | 538 | long current_time = time ((long *) 0); |
| @@ -551,7 +550,7 @@ DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 0, 0, | |||
| 551 | This returns a list of the form (OFFSET SAVINGS-FLAG STANDARD SAVINGS).\n\ | 550 | This returns a list of the form (OFFSET SAVINGS-FLAG STANDARD SAVINGS).\n\ |
| 552 | OFFSET is an integer specifying how many minutes east of Greenwich the\n\ | 551 | OFFSET is an integer specifying how many minutes east of Greenwich the\n\ |
| 553 | current time zone is located. A negative value means west of\n\ | 552 | current time zone is located. A negative value means west of\n\ |
| 554 | Greenwich. Note that this describes the standard time; If daylight\n\ | 553 | Greenwich. Note that this describes the standard time; if daylight\n\ |
| 555 | savings time is in effect, it does not affect this value.\n\ | 554 | savings time is in effect, it does not affect this value.\n\ |
| 556 | SAVINGS-FLAG is non-nil iff daylight savings time or some other sort\n\ | 555 | SAVINGS-FLAG is non-nil iff daylight savings time or some other sort\n\ |
| 557 | of seasonal time adjustment is in effect.\n\ | 556 | of seasonal time adjustment is in effect.\n\ |
| @@ -560,8 +559,7 @@ STANDARD is a string giving the name of the time zone when no seasonal\n\ | |||
| 560 | SAVINGS is a string giving the name of the time zone when there is a\n\ | 559 | SAVINGS is a string giving the name of the time zone when there is a\n\ |
| 561 | seasonal time adjustment in effect.\n\ | 560 | seasonal time adjustment in effect.\n\ |
| 562 | If the local area does not use a seasonal time adjustment,\n\ | 561 | If the local area does not use a seasonal time adjustment,\n\ |
| 563 | SAVINGS-FLAG will always be nil, and STANDARD and SAVINGS will be the\n\ | 562 | SAVINGS-FLAG is always nil, and STANDARD and SAVINGS are equal.") |
| 564 | same.") | ||
| 565 | () | 563 | () |
| 566 | { | 564 | { |
| 567 | #ifdef EMACS_CURRENT_TIME_ZONE | 565 | #ifdef EMACS_CURRENT_TIME_ZONE |