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
5509c7ff
Commit
5509c7ff
authored
May 31, 1997
by
Richard M. Stallman
Browse files
(move_if_not_intangible): Fix previous change.
parent
b0eba991
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/intervals.c
src/intervals.c
+2
-2
No files found.
src/intervals.c
View file @
5509c7ff
...
...
@@ -1868,7 +1868,7 @@ move_if_not_intangible (position)
if
(
!
NILP
(
Vinhibit_point_motion_hooks
))
/* If intangible is inhibited, always move point to POSITION. */
;
else
if
(
PT
<
position
)
else
if
(
PT
<
position
&&
pos
<
ZV
)
{
/* We want to move forward, so check the text before POSITION. */
...
...
@@ -1884,7 +1884,7 @@ move_if_not_intangible (position)
intangible_propval
))
pos
=
Fprevious_char_property_change
(
pos
,
Qnil
);
}
else
else
if
(
pos
>
BEGV
)
{
/* We want to move backward, so check the text after POSITION. */
...
...
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