bdcbeab0d8
Clear up the wording a bit and explain what failonclear means.
9 lines
239 B
C
9 lines
239 B
C
static const char *colorname[NUMCOLS] = {
|
|
"black", /* after initialization */
|
|
"#005577", /* during input */
|
|
"#CC3333", /* wrong password */
|
|
};
|
|
|
|
/* treat a cleared input like a wrong password */
|
|
static const int failonclear = 1;
|