Fix bug #15175 with cursor on boxed characters from display tables.
src/xdisp.c (get_next_display_element): Don't apply to characters from a display vector the logic of setting it->end_of_box_run_p suitable for characters from a buffer.
This commit is contained in:
parent
b34454d067
commit
11f20add70
2 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
2013-08-24 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* xdisp.c (get_next_display_element): Don't apply to characters
|
||||
from a display vector the logic of setting it->end_of_box_run_p
|
||||
suitable for characters from a buffer. (Bug#15175)
|
||||
|
||||
* w32.c (fdutimens): Call 'utime', which is implemented on w32.c
|
||||
to handle directories, rather than '_utime' which doesn't.
|
||||
(Bug#15176)
|
||||
|
|
|
@ -7050,7 +7050,7 @@ get_next_display_element (struct it *it)
|
|||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
else if (it->method != GET_FROM_DISPLAY_VECTOR)
|
||||
{
|
||||
int face_id = face_after_it_pos (it);
|
||||
it->end_of_box_run_p
|
||||
|
|
Loading…
Add table
Reference in a new issue