diff options
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/editfns.c b/src/editfns.c index bd70f0a6859..df982234977 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -6,8 +6,8 @@ This file is part of GNU Emacs. | |||
| 6 | 6 | ||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | 7 | GNU Emacs is free software: you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by | 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation, either version 3 of the License, or | 9 | the Free Software Foundation, either version 3 of the License, or (at |
| 10 | (at your option) any later version. | 10 | your option) any later version. |
| 11 | 11 | ||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | 12 | GNU Emacs is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| @@ -1895,7 +1895,7 @@ DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0, | |||
| 1895 | doc: /* Return the current time, as a float number of seconds since the epoch. | 1895 | doc: /* Return the current time, as a float number of seconds since the epoch. |
| 1896 | If SPECIFIED-TIME is given, it is the time to convert to float | 1896 | If SPECIFIED-TIME is given, it is the time to convert to float |
| 1897 | instead of the current time. The argument should have the form | 1897 | instead of the current time. The argument should have the form |
| 1898 | (HIGH LOW) or (HIGH LOW USEC) or (HIGH LOW USEC PSEC). Thus, | 1898 | \(HIGH LOW) or (HIGH LOW USEC) or (HIGH LOW USEC PSEC). Thus, |
| 1899 | you can use times from `current-time' and from `file-attributes'. | 1899 | you can use times from `current-time' and from `file-attributes'. |
| 1900 | SPECIFIED-TIME can also have the form (HIGH . LOW), but this is | 1900 | SPECIFIED-TIME can also have the form (HIGH . LOW), but this is |
| 1901 | considered obsolete. | 1901 | considered obsolete. |
| @@ -2284,7 +2284,7 @@ OFFSET is an integer number of seconds ahead of UTC (east of Greenwich). | |||
| 2284 | NAME is a string giving the name of the time zone. | 2284 | NAME is a string giving the name of the time zone. |
| 2285 | If SPECIFIED-TIME is given, the time zone offset is determined from it | 2285 | If SPECIFIED-TIME is given, the time zone offset is determined from it |
| 2286 | instead of using the current time. The argument should have the form | 2286 | instead of using the current time. The argument should have the form |
| 2287 | (HIGH LOW . IGNORED). Thus, you can use times obtained from | 2287 | \(HIGH LOW . IGNORED). Thus, you can use times obtained from |
| 2288 | `current-time' and from `file-attributes'. SPECIFIED-TIME can also | 2288 | `current-time' and from `file-attributes'. SPECIFIED-TIME can also |
| 2289 | have the form (HIGH . LOW), but this is considered obsolete. | 2289 | have the form (HIGH . LOW), but this is considered obsolete. |
| 2290 | Optional second arg ZONE is omitted or nil for the local time zone, or | 2290 | Optional second arg ZONE is omitted or nil for the local time zone, or |
| @@ -3627,7 +3627,7 @@ save_restriction_restore (Lisp_Object data) | |||
| 3627 | DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0, | 3627 | DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0, |
| 3628 | doc: /* Execute BODY, saving and restoring current buffer's restrictions. | 3628 | doc: /* Execute BODY, saving and restoring current buffer's restrictions. |
| 3629 | The buffer's restrictions make parts of the beginning and end invisible. | 3629 | The buffer's restrictions make parts of the beginning and end invisible. |
| 3630 | (They are set up with `narrow-to-region' and eliminated with `widen'.) | 3630 | \(They are set up with `narrow-to-region' and eliminated with `widen'.) |
| 3631 | This special form, `save-restriction', saves the current buffer's restrictions | 3631 | This special form, `save-restriction', saves the current buffer's restrictions |
| 3632 | when it is entered, and restores them when it is exited. | 3632 | when it is entered, and restores them when it is exited. |
| 3633 | So any `narrow-to-region' within BODY lasts only until the end of the form. | 3633 | So any `narrow-to-region' within BODY lasts only until the end of the form. |