mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
(compute_motion): Correct the criterion for when to
move back 1 space when we terminate just after continuing the line.
This commit is contained in:
parent
8626cfa223
commit
1d78452128
1 changed files with 1 additions and 1 deletions
|
|
@ -1152,7 +1152,7 @@ compute_motion (from, fromvpos, fromhpos, did_motion, to, tovpos, tohpos, width,
|
|||
if (vpos > tovpos || vpos == tovpos && hpos >= tohpos)
|
||||
{
|
||||
if (contin_hpos && prev_hpos == 0
|
||||
&& (contin_hpos == width || wide_column))
|
||||
&& ((hpos > tohpos && contin_hpos == width) || wide_column))
|
||||
{ /* Line breaks because we can't put the character at the
|
||||
previous line any more. It is not the multi-column
|
||||
character continued in middle. Go back to previous
|
||||
|
|
|
|||
Loading…
Reference in a new issue