diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-31 16:44:19 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-31 16:44:19 +0200 |
commit | a9d52e3b7925ef119b5d0d9fca14faac634effb0 (patch) | |
tree | 151c52ad2e282b8e264aee2fc7af3db76d8c2071 /src/ui.c | |
parent | a26559b553079c3959ee142a010b2e000c180323 (diff) | |
download | vim-git-a9d52e3b7925ef119b5d0d9fca14faac634effb0.tar.gz |
Fixes for coverity warnings.
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3100,6 +3100,9 @@ get_fpos_of_mouse(mpos) if (mpos->col > 0) --mpos->col; +#ifdef FEAT_VIRTUALEDIT + mpos->coladd = 0; +#endif return IN_BUFFER; } |