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
3e313766
Commit
3e313766
authored
Jul 09, 2003
by
Stefan Monnier
Browse files
(set_point_both): Use new type for overlays_(before|after).
parent
26a59e42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/intervals.c
src/intervals.c
+1
-2
No files found.
src/intervals.c
View file @
3e313766
...
...
@@ -2009,8 +2009,7 @@ set_point_both (buffer, charpos, bytepos)
if
(
charpos
>
BUF_ZV
(
buffer
)
||
charpos
<
BUF_BEGV
(
buffer
))
abort
();
have_overlays
=
(
!
NILP
(
buffer
->
overlays_before
)
||
!
NILP
(
buffer
->
overlays_after
));
have_overlays
=
(
buffer
->
overlays_before
||
buffer
->
overlays_after
);
/* If we have no text properties and overlays,
then we can do it quickly. */
...
...
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