aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorJuanma Barranquero2007-01-23 13:19:36 +0000
committerJuanma Barranquero2007-01-23 13:19:36 +0000
commit9671c13af86f8d34feb3bba19189114243f0d6fa (patch)
tree913bd2ddcdd0a72b0c37faf08872cad0f85f2941 /src/editfns.c
parentbfb2471c3d77c45182fe0bc3c64ab8e170811c6b (diff)
downloademacs-9671c13af86f8d34feb3bba19189114243f0d6fa.tar.gz
emacs-9671c13af86f8d34feb3bba19189114243f0d6fa.zip
(Finsert_char): Doc fix.
(Fget_internal_run_time, Fdecode_time): Fix typos in docstrings.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 3c6c51c6263..6ef2efe313e 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1456,9 +1456,9 @@ most significant 16 bits of the seconds, while the second has the
1456least significant 16 bits. The third integer gives the microsecond 1456least significant 16 bits. The third integer gives the microsecond
1457count. 1457count.
1458 1458
1459On systems that can't determine the run time, get-internal-run-time 1459On systems that can't determine the run time, `get-internal-run-time'
1460does the same thing as current-time. The microsecond count is zero on 1460does the same thing as `current-time'. The microsecond count is zero
1461systems that do not provide resolution finer than a second. */) 1461on systems that do not provide resolution finer than a second. */)
1462 () 1462 ()
1463{ 1463{
1464#ifdef HAVE_GETRUSAGE 1464#ifdef HAVE_GETRUSAGE
@@ -1721,7 +1721,7 @@ For example, to produce full ISO 8601 format, use "%Y-%m-%dT%T%z". */)
1721DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0, 1721DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0,
1722 doc: /* Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE). 1722 doc: /* Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
1723The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED), 1723The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED),
1724as from `current-time' and `file-attributes', or `nil' to use the 1724as from `current-time' and `file-attributes', or nil to use the
1725current time. The obsolete form (HIGH . LOW) is also still accepted. 1725current time. The obsolete form (HIGH . LOW) is also still accepted.
1726The list has the following nine members: SEC is an integer between 0 1726The list has the following nine members: SEC is an integer between 0
1727and 60; SEC is 60 for a leap second, which only some operating systems 1727and 60; SEC is 60 for a leap second, which only some operating systems
@@ -2285,8 +2285,7 @@ usage: (insert-before-markers-and-inherit &rest ARGS) */)
2285} 2285}
2286 2286
2287DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 3, 0, 2287DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 3, 0,
2288 doc: /* Insert COUNT (second arg) copies of CHARACTER (first arg). 2288 doc: /* Insert COUNT copies of CHARACTER.
2289Both arguments are required.
2290Point, and before-insertion markers, are relocated as in the function `insert'. 2289Point, and before-insertion markers, are relocated as in the function `insert'.
2291The optional third arg INHERIT, if non-nil, says to inherit text properties 2290The optional third arg INHERIT, if non-nil, says to inherit text properties
2292from adjoining text, if those properties are sticky. */) 2291from adjoining text, if those properties are sticky. */)
@@ -3175,7 +3174,7 @@ save_restriction_restore (data)
3175DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0, 3174DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
3176 doc: /* Execute BODY, saving and restoring current buffer's restrictions. 3175 doc: /* Execute BODY, saving and restoring current buffer's restrictions.
3177The buffer's restrictions make parts of the beginning and end invisible. 3176The buffer's restrictions make parts of the beginning and end invisible.
3178(They are set up with `narrow-to-region' and eliminated with `widen'.) 3177\(They are set up with `narrow-to-region' and eliminated with `widen'.)
3179This special form, `save-restriction', saves the current buffer's restrictions 3178This special form, `save-restriction', saves the current buffer's restrictions
3180when it is entered, and restores them when it is exited. 3179when it is entered, and restores them when it is exited.
3181So any `narrow-to-region' within BODY lasts only until the end of the form. 3180So any `narrow-to-region' within BODY lasts only until the end of the form.