diff options
| author | Joakim Verona | 2013-08-24 15:17:24 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-08-24 15:17:24 +0200 |
| commit | 8131fcfd622dd2b7fccf09b0f6a1c3f4747619a7 (patch) | |
| tree | e5b0c25192c49084a07e61dcee99f98cfabef5db /src | |
| parent | 88475263ceab0e918384ae21d531893012c42954 (diff) | |
| parent | 11f20add707674b98227ca6f26d0e7f10dbbfac9 (diff) | |
| download | emacs-8131fcfd622dd2b7fccf09b0f6a1c3f4747619a7.tar.gz emacs-8131fcfd622dd2b7fccf09b0f6a1c3f4747619a7.zip | |
merge from trunk
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2bb41071fd6..70d722a02a4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2013-08-24 Eli Zaretskii <eliz@gnu.org> | 1 | 2013-08-24 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * xdisp.c (get_next_display_element): Don't apply to characters | ||
| 4 | from a display vector the logic of setting it->end_of_box_run_p | ||
| 5 | suitable for characters from a buffer. (Bug#15175) | ||
| 6 | |||
| 3 | * w32.c (fdutimens): Call 'utime', which is implemented on w32.c | 7 | * w32.c (fdutimens): Call 'utime', which is implemented on w32.c |
| 4 | to handle directories, rather than '_utime' which doesn't. | 8 | to handle directories, rather than '_utime' which doesn't. |
| 5 | (Bug#15176) | 9 | (Bug#15176) |
diff --git a/src/xdisp.c b/src/xdisp.c index 551774ae2fd..67d386a93e2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -7090,7 +7090,7 @@ get_next_display_element (struct it *it) | |||
| 7090 | } | 7090 | } |
| 7091 | } | 7091 | } |
| 7092 | } | 7092 | } |
| 7093 | else | 7093 | else if (it->method != GET_FROM_DISPLAY_VECTOR) |
| 7094 | { | 7094 | { |
| 7095 | int face_id = face_after_it_pos (it); | 7095 | int face_id = face_after_it_pos (it); |
| 7096 | it->end_of_box_run_p | 7096 | it->end_of_box_run_p |