diff options
author | June McEnroe <programble@gmail.com> | 2017-08-02 01:34:16 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-08-02 01:34:33 -0400 |
commit | 2b2b102e2e2c0080c7c24a18261267e9ab609579 (patch) | |
tree | ef5f37ecaa3b99383d6c1365530132261f8b419c | |
parent | Split tile access and modify (diff) | |
download | torus-2b2b102e2e2c0080c7c24a18261267e9ab609579.tar.gz torus-2b2b102e2e2c0080c7c24a18261267e9ab609579.zip |
Preserve color on replace
Diffstat (limited to '')
-rwxr-xr-x | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c index 74e3a6f..464568b 100755 --- a/client.c +++ b/client.c @@ -143,7 +143,7 @@ static void readInput(void) { } if (mode == MODE_REPLACE) { - if (isprint(c)) clientPut(inputColor, c); + if (isprint(c)) clientPut(CH_COLOR(inch()), c); mode = MODE_NORMAL; return; } |