diff options
| author | Eli Zaretskii | 2014-06-21 15:30:02 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-06-21 15:30:02 +0300 |
| commit | 53b15fa6dc1b975a617923ec1da5d1b29a1f6955 (patch) | |
| tree | 06c89292e6bfa367849ae67b7fd86e6f017fa2f0 /src/ChangeLog | |
| parent | 3114d9e702aada713f029cfd80f8785240c9d940 (diff) | |
| download | emacs-53b15fa6dc1b975a617923ec1da5d1b29a1f6955.tar.gz emacs-53b15fa6dc1b975a617923ec1da5d1b29a1f6955.zip | |
Fix bug #17823 with vertical-motion in lines with line-prefix.
src/indent.c (Fvertical_motion): Move to the goal column, if any,
with a single call to move_it_in_display_line, not in two calls.
Doing this with two calls causes move_it_in_display_line apply the
line-prefix handling twice instead of just once.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 93a25ba2871..cd82e91c2dd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | 2014-06-21 Eli Zaretskii <eliz@gnu.org> | 1 | 2014-06-21 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * indent.c (Fvertical_motion): Doc fix. | 3 | * indent.c (Fvertical_motion): Doc fix. |
| 4 | Move to the goal column, if any, with a single call to | ||
| 5 | move_it_in_display_line, not in two calls. Doing this with two | ||
| 6 | calls causes move_it_in_display_line apply the line-prefix | ||
| 7 | handling twice instead of just once. (Bug#17823) | ||
| 4 | 8 | ||
| 5 | 2014-06-21 Paul Eggert <eggert@cs.ucla.edu> | 9 | 2014-06-21 Paul Eggert <eggert@cs.ucla.edu> |
| 6 | 10 | ||