justify: skip over blanks after the region, to not skew the indentation
This fixes https://savannah.gnu.org/bugs/?58023. Bug existed since commit 3225c71e from six days ago.
Этот коммит содержится в:
родитель
f528ced22b
Коммит
107abd2654
@ -1772,6 +1772,10 @@ void do_justify(bool full_justify)
|
||||
if (0 < end_x && end_x < fore_len)
|
||||
end_x = fore_len;
|
||||
|
||||
/* Advance over blanks after the region. */
|
||||
while (is_blank_char(&endline->data[end_x]))
|
||||
end_x++;
|
||||
|
||||
sampleline = startline;
|
||||
|
||||
/* Find the first line of the paragraph in which the region starts. */
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user