Use NCOLS rather than hard-coding value

This commit is contained in:
Bobbi Webber-Manners 2020-08-02 17:28:42 -04:00
parent f30e82362f
commit de28945057

View File

@ -675,7 +675,7 @@ void update_after_delete_char(void) {
if (col > 0)
--col;
else {
col = 79;
col = NCOLS - 1;
if (row > 0)
--row;
else {