comparison src/ui.c @ 19195:2ef19eed524a v8.2.0156

patch 8.2.0156: various typos in source files and tests Commit: https://github.com/vim/vim/commit/4b96df5a017a04141c4e901b1fc5704a3ca48099 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 22:00:26 2020 +0100 patch 8.2.0156: various typos in source files and tests Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes https://github.com/vim/vim/issues/5532)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 22:15:05 +0100
parents 1c75e1974313
children fe8ba2f82f59
comparison
equal deleted inserted replaced
19194:9986e645676b 19195:2ef19eed524a
1498 { 1498 {
1499 clip_invert_rectangle(cbd, row2, 0, 1, col2, invert); 1499 clip_invert_rectangle(cbd, row2, 0, 1, col2, invert);
1500 row2--; 1500 row2--;
1501 } 1501 }
1502 1502
1503 // Handle the rectangle thats left 1503 // Handle the rectangle that's left
1504 if (row2 >= row1) 1504 if (row2 >= row1)
1505 clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1, 1505 clip_invert_rectangle(cbd, row1, 0, row2 - row1 + 1,
1506 (int)Columns, invert); 1506 (int)Columns, invert);
1507 } 1507 }
1508 } 1508 }