1
1

help: prevent double spaces from protruding across the right edge

This fixes https://savannah.gnu.org/bugs/?57563.
Этот коммит содержится в:
Benno Schulenberg 2020-01-09 12:02:49 +01:00
родитель 1486f32d42
Коммит 3f57200e10

Просмотреть файл

@ -51,7 +51,7 @@ void wrap_help_text_into_buffer(void)
/* Copy the help text into the just-created new buffer. */
while (*ptr != '\0') {
int length;
int length, shim;
char *oneline;
if (ptr >= end_of_intro)
@ -64,7 +64,8 @@ void wrap_help_text_into_buffer(void)
} else {
length = break_line(ptr, wrapping_point, TRUE);
oneline = nmalloc(length + 1);
snprintf(oneline, length + 1, "%s", ptr);
shim = (*(ptr + length - 1) == ' ') ? 0 : 1;
snprintf(oneline, length + shim, "%s", ptr);
}
free(openfile->current->data);