diff options
| author | Eli Zaretskii | 2013-07-02 18:52:07 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-07-02 18:52:07 +0300 |
| commit | bcffb5caf88767615b86aea7372b56c29dadfbc9 (patch) | |
| tree | 5882a42a26625c8af75fbc50642b04ff5380f8d1 /src/ChangeLog | |
| parent | 2c41e781945c57d170b41205a4af3acefa5cc85c (diff) | |
| download | emacs-bcffb5caf88767615b86aea7372b56c29dadfbc9.tar.gz emacs-bcffb5caf88767615b86aea7372b56c29dadfbc9.zip | |
Fix bug #2749 with overflow-newline-into-fringe in visual-line-mode.
src/xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Don't disallow
word-wrap, so that overflow-newline-into-fringe would work in
visual-line-mode.
(move_it_in_display_line_to): When the last scanned display
element fits exactly on the display line, and
overflow-newline-into-fringe is non-nil, but wrap_it is valid,
don't return MOVE_NEWLINE_OR_CR, but instead back up to the last
wrap point and return MOVE_LINE_CONTINUED. Fixes problems with
finding buffer position that corresponds to pixel coordinates,
e.g. in buffer_posn_from_coords.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d5907c64942..76cd156a0e7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2013-07-02 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Don't disallow | ||
| 4 | word-wrap, so that overflow-newline-into-fringe would work in | ||
| 5 | visual-line-mode. (Bug#2749) | ||
| 6 | (move_it_in_display_line_to): When the last scanned display | ||
| 7 | element fits exactly on the display line, and | ||
| 8 | overflow-newline-into-fringe is non-nil, but wrap_it is valid, | ||
| 9 | don't return MOVE_NEWLINE_OR_CR, but instead back up to the last | ||
| 10 | wrap point and return MOVE_LINE_CONTINUED. Fixes problems with | ||
| 11 | finding buffer position that corresponds to pixel coordinates, | ||
| 12 | e.g. in buffer_posn_from_coords. | ||
| 13 | |||
| 1 | 2013-07-02 Jan Djärv <jan.h.d@swipnet.se> | 14 | 2013-07-02 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 15 | ||
| 3 | * process.c (handle_child_signal): Call catch_child_signal if | 16 | * process.c (handle_child_signal): Call catch_child_signal if |