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
53b7feec
Commit
53b7feec
authored
Jan 20, 1994
by
Richard M. Stallman
Browse files
(Fprevious_property_change): Move back at least 1 char.
(Fprevious_single_property_change): Likewise.
parent
3bf5f17a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
src/textprop.c
src/textprop.c
+8
-0
No files found.
src/textprop.c
View file @
53b7feec
...
...
@@ -647,6 +647,10 @@ back past position LIMIT; fail if nothing is found before LIMIT.")
if
(
NULL_INTERVAL_P
(
i
))
return
limit
;
/* Start with the interval containing the char before point. */
if
(
i
->
position
==
XFASTINT
(
pos
))
i
=
previous_interval
(
i
);
previous
=
previous_interval
(
i
);
while
(
!
NULL_INTERVAL_P
(
previous
)
&&
intervals_equal
(
previous
,
i
)
&&
(
NILP
(
limit
)
...
...
@@ -686,6 +690,10 @@ back past position LIMIT; fail if nothing is found before LIMIT.")
if
(
NULL_INTERVAL_P
(
i
))
return
limit
;
/* Start with the interval containing the char before point. */
if
(
i
->
position
==
XFASTINT
(
pos
))
i
=
previous_interval
(
i
);
here_val
=
textget
(
i
->
plist
,
prop
);
previous
=
previous_interval
(
i
);
while
(
!
NULL_INTERVAL_P
(
previous
)
...
...
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