1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-15 01:11:09 +03:00

Remove unnecessary ; from palette reset escape sequence

Fixes #2779
This commit is contained in:
Maxime Coste 2019-03-13 06:55:08 +11:00
parent bfc2a178f2
commit 47be98f1fc

View File

@ -286,7 +286,7 @@ NCursesUI::~NCursesUI()
enable_mouse(false); enable_mouse(false);
if (can_change_color()) // try to reset palette if (can_change_color()) // try to reset palette
{ {
fputs("\033]104;\007", stdout); fputs("\033]104\007", stdout);
fflush(stdout); fflush(stdout);
} }
endwin(); endwin();