aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/ChangeLog13
-rw-r--r--src/editfns.c13
2 files changed, 15 insertions, 11 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6b1491203a5..31abecae763 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12007-01-23 Juanma Barranquero <lekktu@gmail.com>
2
3 * editfns.c (Finsert_char): Doc fix.
4 (Fget_internal_run_time, Fdecode_time): Fix typos in docstrings.
5
12007-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 62007-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 7
3 * macselect.c [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Don't 8 * macselect.c [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Don't
@@ -32,7 +37,7 @@
32 * .gdbinit: Reformat documentation so that first sentence 37 * .gdbinit: Reformat documentation so that first sentence
33 displays properly with "help user-defined" (like apropos). 38 displays properly with "help user-defined" (like apropos).
34 39
352007-01-18 Bruno Haible <bruno@clisp.org> (tiny change) 402007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
36 41
37 * epaths.in: Move PATH_DOC from local/info to local/share/info. 42 * epaths.in: Move PATH_DOC from local/info to local/share/info.
38 43
@@ -54,8 +59,8 @@
54 59
552007-01-13 Eli Zaretskii <eliz@gnu.org> 602007-01-13 Eli Zaretskii <eliz@gnu.org>
56 61
57 * process.c (Fdelete_process, Fprocess_id, sigchld_handler): Copy 62 * process.c (Fdelete_process, Fprocess_id, sigchld_handler):
58 PID into EMACS_INT to avoid GCC warnings. 63 Copy PID into EMACS_INT to avoid GCC warnings.
59 64
60 * fns.c (maybe_resize_hash_table): Copy new size of hash table 65 * fns.c (maybe_resize_hash_table): Copy new size of hash table
61 into EMACS_INT to avoid GCC warnings. 66 into EMACS_INT to avoid GCC warnings.
@@ -162,7 +167,7 @@
162 * xterm.h (x_display_info): New: net_supported_atoms, 167 * xterm.h (x_display_info): New: net_supported_atoms,
163 nr_net_supported_atoms and net_supported_window. 168 nr_net_supported_atoms and net_supported_window.
164 169
165 * xterm.c: New variable last_user_time. 170 * xterm.c (last_user_time): New variable.
166 (handle_one_xevent): Set last_user_time from events that have Time. 171 (handle_one_xevent): Set last_user_time from events that have Time.
167 Set net_supported_window to 0 when reparented. 172 Set net_supported_window to 0 when reparented.
168 (wm_supports): New function. 173 (wm_supports): New function.
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.