diff options
author | ZviRackover <zvirack@gmail.com> | 2018-07-06 07:23:17 +0300 |
---|---|---|
committer | ZviRackover <zvirack@gmail.com> | 2018-08-14 08:38:38 +0300 |
commit | 999d33faf4feb4898509f2aea4836aa411a5c75c (patch) | |
tree | dbcdbc284d136527184e9759db7b1a99c2d2ba04 /src/nvim/mbyte.c | |
parent | 7676fc7562c7edd116da9dad472be44458ba6fbc (diff) | |
download | rneovim-999d33faf4feb4898509f2aea4836aa411a5c75c.tar.gz rneovim-999d33faf4feb4898509f2aea4836aa411a5c75c.tar.bz2 rneovim-999d33faf4feb4898509f2aea4836aa411a5c75c.zip |
lint: clean up after parent commit
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index b5ac400027..94bf7fb985 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -1830,7 +1830,7 @@ const char *mb_unescape(const char **const pp) bool mb_lefthalve(int row, int col) { return utf_off2cells(LineOffset[row] + col, - LineOffset[row] + screen_Columns) > 1; + LineOffset[row] + screen_Columns) > 1; } /* |