Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2063d89c
Commit
2063d89c
authored
Sep 07, 2003
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(region_limit): Support any non-zero value of BEGINNINGP.
parent
2b3cb60a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/editfns.c
src/editfns.c
+1
-1
No files found.
src/ChangeLog
View file @
2063d89c
2003-09-07 Eli Zaretskii <eliz@elta.co.il>
* editfns.c (region_limit): Support any non-zero value of
BEGINNINGP.
2003-09-03 Kim F. Storm <storm@cua.dk>
* xdisp.c (get_window_cursor_type): Partially undo 2002-03-01
...
...
src/editfns.c
View file @
2063d89c
...
...
@@ -299,7 +299,7 @@ region_limit (beginningp)
if
(
NILP
(
m
))
error
(
"The mark is not set now, so there is no region"
);
if
((
PT
<
XFASTINT
(
m
))
==
beginningp
)
if
((
PT
<
XFASTINT
(
m
))
==
(
beginningp
!=
0
)
)
m
=
make_number
(
PT
);
return
m
;
}
...
...
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