Skip to content

Commit

Permalink
Don't process undefined CSI codes (fix #279, fix #286).
Browse files Browse the repository at this point in the history
  • Loading branch information
mridgers committed Feb 2, 2015
1 parent e6799e6 commit 3085d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clink/dll/rl_fwrite.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static int fwrite_ansi_code(const wchar_t* code, int current, int defaults)
}

// Process each code that is supported.
for (i = 0; i < sizeof_array(params); ++i)
for (i = 0; i < n; ++i)
{
int param = params[i];

Expand Down

0 comments on commit 3085d37

Please sign in to comment.