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
7b0815ba
Commit
7b0815ba
authored
Aug 02, 2010
by
Juanma Barranquero
Browse files
* editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
parent
e9d1aaff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/editfns.c
src/editfns.c
+2
-2
No files found.
src/ChangeLog
View file @
7b0815ba
2010-08-02 Juanma Barranquero <lekktu@gmail.com>
* editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
Wording by Drew Adams <drew.adams@oracle.com>.
2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
* xterm.h (struct x_output): Add ttip_widget, ttip_window and
...
...
src/editfns.c
View file @
7b0815ba
...
...
@@ -336,14 +336,14 @@ region_limit (int beginningp)
}
DEFUN
(
"region-beginning"
,
Fregion_beginning
,
Sregion_beginning
,
0
,
0
,
0
,
doc
:
/* Return
position of beginning of region, as an integ
er. */
)
doc
:
/* Return
the integer value of point or mark, whichever is small
er. */
)
(
void
)
{
return
region_limit
(
1
);
}
DEFUN
(
"region-end"
,
Fregion_end
,
Sregion_end
,
0
,
0
,
0
,
doc
:
/* Return
position of end of region, as an inte
ger. */
)
doc
:
/* Return
the integer value of point or mark, whichever is lar
ger. */
)
(
void
)
{
return
region_limit
(
0
);
...
...
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