Commit d992735d authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed bound_pos handling in move_prev_chars.

parent 9f877fec
...@@ -826,6 +826,7 @@ static long move_prev_chars(HTMLTxtRange *This, long cnt, const dompos_t *pos, B ...@@ -826,6 +826,7 @@ static long move_prev_chars(HTMLTxtRange *This, long cnt, const dompos_t *pos, B
{ {
dompos_t iter, tmp; dompos_t iter, tmp;
long ret = 0; long ret = 0;
BOOL prev_eq = FALSE;
WCHAR c; WCHAR c;
if(bounded) if(bounded)
...@@ -847,14 +848,16 @@ static long move_prev_chars(HTMLTxtRange *This, long cnt, const dompos_t *pos, B ...@@ -847,14 +848,16 @@ static long move_prev_chars(HTMLTxtRange *This, long cnt, const dompos_t *pos, B
ret++; ret++;
if(bound_pos && dompos_cmp(&iter, bound_pos)) { if(prev_eq) {
*bounded = TRUE; *bounded = TRUE;
cnt--; ret++;
} }
prev_eq = bound_pos && dompos_cmp(&iter, bound_pos);
} }
*new_pos = iter; *new_pos = iter;
return bounded && *bounded ? ret+1 : ret; return ret;
} }
static long find_prev_space(HTMLTxtRange *This, const dompos_t *pos, BOOL first_space, dompos_t *ret) static long find_prev_space(HTMLTxtRange *This, const dompos_t *pos, BOOL first_space, dompos_t *ret)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment