1
1

tweaks: remove some stray spaces before a comma

Этот коммит содержится в:
Benno Schulenberg 2022-04-11 10:31:39 +02:00
родитель 42c7bfcf8a
Коммит ea9d49b9d8
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -2566,7 +2566,7 @@ int main(int argc, char **argv)
edit_scroll(FORWARD); edit_scroll(FORWARD);
wnoutrefresh(midwin); wnoutrefresh(midwin);
} }
wredrawln(footwin, 0 ,1); wredrawln(footwin, 0, 1);
wnoutrefresh(footwin); wnoutrefresh(footwin);
place_the_cursor(); place_the_cursor();
} else if (ISSET(ZERO) && lastmessage > VACUUM) } else if (ISSET(ZERO) && lastmessage > VACUUM)

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

@ -229,7 +229,7 @@ void inject_into_answer(char *burst, size_t count)
answer = nrealloc(answer, strlen(answer) + count + 1); answer = nrealloc(answer, strlen(answer) + count + 1);
memmove(answer + typing_x + count, answer + typing_x, memmove(answer + typing_x + count, answer + typing_x,
strlen(answer) - typing_x + 1); strlen(answer) - typing_x + 1);
strncpy(answer + typing_x, burst , count); strncpy(answer + typing_x, burst, count);
typing_x += count; typing_x += count;
} }

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

@ -219,7 +219,7 @@ void read_keys_from(WINDOW *frame)
if (input == ERR) { if (input == ERR) {
if (spotlighted || ISSET(ZERO) || LINES == 1) { if (spotlighted || ISSET(ZERO) || LINES == 1) {
if (ISSET(ZERO) && lastmessage > VACUUM) if (ISSET(ZERO) && lastmessage > VACUUM)
wredrawln(midwin, editwinrows - 1 , 1); wredrawln(midwin, editwinrows - 1, 1);
lastmessage = VACUUM; lastmessage = VACUUM;
spotlighted = FALSE; spotlighted = FALSE;
update_line(openfile->current, openfile->current_x); update_line(openfile->current, openfile->current_x);