Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9671c13a
Commit
9671c13a
authored
Jan 23, 2007
by
Juanma Barranquero
Browse files
(Finsert_char): Doc fix.
(Fget_internal_run_time, Fdecode_time): Fix typos in docstrings.
parent
bfb2471c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
11 deletions
+15
-11
src/ChangeLog
src/ChangeLog
+9
-4
src/editfns.c
src/editfns.c
+6
-7
No files found.
src/ChangeLog
View file @
9671c13a
2007-01-23 Juanma Barranquero <lekktu@gmail.com>
* editfns.c (Finsert_char): Doc fix.
(Fget_internal_run_time, Fdecode_time): Fix typos in docstrings.
2007-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* macselect.c [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Don't
...
...
@@ -32,7 +37,7 @@
* .gdbinit: Reformat documentation so that first sentence
displays properly with "help user-defined" (like apropos).
2007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
2007-01-18 Bruno Haible <bruno@clisp.org>
(tiny change)
* epaths.in: Move PATH_DOC from local/info to local/share/info.
...
...
@@ -54,8 +59,8 @@
2007-01-13 Eli Zaretskii <eliz@gnu.org>
* process.c (Fdelete_process, Fprocess_id, sigchld_handler):
Copy
PID into EMACS_INT to avoid GCC warnings.
* process.c (Fdelete_process, Fprocess_id, sigchld_handler):
Copy
PID into EMACS_INT to avoid GCC warnings.
* fns.c (maybe_resize_hash_table): Copy new size of hash table
into EMACS_INT to avoid GCC warnings.
...
...
@@ -162,7 +167,7 @@
* xterm.h (x_display_info): New: net_supported_atoms,
nr_net_supported_atoms and net_supported_window.
* xterm.c
: New variable last_user_tim
e.
* xterm.c
(last_user_time): New variabl
e.
(handle_one_xevent): Set last_user_time from events that have Time.
Set net_supported_window to 0 when reparented.
(wm_supports): New function.
...
...
src/editfns.c
View file @
9671c13a
...
...
@@ -1456,9 +1456,9 @@ most significant 16 bits of the seconds, while the second has the
least significant 16 bits. The third integer gives the microsecond
count.
On systems that can't determine the run time, get-internal-run-time
does the same thing as current-time. The microsecond count is zero
on
systems that do not provide resolution finer than a second. */
)
On systems that can't determine the run time,
`
get-internal-run-time
'
does the same thing as
`
current-time
'
. The microsecond count is zero
on
systems that do not provide resolution finer than a second. */
)
()
{
#ifdef HAVE_GETRUSAGE
...
...
@@ -1721,7 +1721,7 @@ For example, to produce full ISO 8601 format, use "%Y-%m-%dT%T%z". */)
DEFUN
(
"decode-time"
,
Fdecode_time
,
Sdecode_time
,
0
,
1
,
0
,
doc
:
/* Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED),
as from `current-time' and `file-attributes', or
`
nil
'
to use the
as from `current-time' and `file-attributes', or nil to use the
current time. The obsolete form (HIGH . LOW) is also still accepted.
The list has the following nine members: SEC is an integer between 0
and 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) */)
}
DEFUN
(
"insert-char"
,
Finsert_char
,
Sinsert_char
,
2
,
3
,
0
,
doc
:
/* Insert COUNT (second arg) copies of CHARACTER (first arg).
Both arguments are required.
doc
:
/* Insert COUNT copies of CHARACTER.
Point, and before-insertion markers, are relocated as in the function `insert'.
The optional third arg INHERIT, if non-nil, says to inherit text properties
from adjoining text, if those properties are sticky. */
)
...
...
@@ -3175,7 +3174,7 @@ save_restriction_restore (data)
DEFUN
(
"save-restriction"
,
Fsave_restriction
,
Ssave_restriction
,
0
,
UNEVALLED
,
0
,
doc
:
/* Execute BODY, saving and restoring current buffer's restrictions.
The buffer's restrictions make parts of the beginning and end invisible.
(They are set up with `narrow-to-region' and eliminated with `widen'.)
\
(They are set up with `narrow-to-region' and eliminated with `widen'.)
This special form, `save-restriction', saves the current buffer's restrictions
when it is entered, and restores them when it is exited.
So any `narrow-to-region' within BODY lasts only until the end of the form.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment