Make sure cwd colors update when the variable changes. This is a common regression, it seems. This time it was caused by the repaint reductions added in 1.22.2.

darcs-hash:20061212101348-ac50b-970686fcd3317f19c6131cdc46885a841c68a6d6.gz
This commit is contained in:
axel
2006-12-12 20:13:48 +10:00
parent edc20a7505
commit 234034d302
4 changed files with 16 additions and 4 deletions

View File

@@ -133,7 +133,8 @@ static const wchar_t *name_arr[] =
L"vi-arg-digit",
L"execute",
L"beginning-of-buffer",
L"end-of-buffer"
L"end-of-buffer",
L"repaint"
}
;
@@ -214,6 +215,7 @@ static const wchar_t code_arr[] =
R_EXECUTE,
R_BEGINNING_OF_BUFFER,
R_END_OF_BUFFER,
R_REPAINT
}
;
@@ -255,7 +257,6 @@ static int inputrc_error = 0;
*/
static int is_init = 0;
/**
This is the variable telling us how many timew the next command
should bne repeated. Only actually used in vi-mode.