(adjust_point_for_property): Be more careful about termination.
This commit is contained in:
parent
5279cf1687
commit
9465a86c76
1 changed files with 1 additions and 1 deletions
|
@ -1952,7 +1952,7 @@ adjust_point_for_property (last_pt, modified)
|
|||
less than we actually did, so that we still have
|
||||
more freedom below in choosing which end of the range
|
||||
to go to. */
|
||||
? (PT < last_pt ? end : beg)
|
||||
? (orig_pt = -1, PT < last_pt ? end : beg)
|
||||
/* We either have moved already or the last point
|
||||
was already in the range: we don't get to choose
|
||||
which end of the range we have to go to. */
|
||||
|
|
Loading…
Add table
Reference in a new issue