summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-17 11:33:22 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-17 11:33:22 +0000
commit2c4278fc738cca3fcd70cffd7ddc865ea9783694 (patch)
treeb6cf40176c3e3904782d82ab2cacc5afeb1d3d75 /src/quickfix.c
parentbf0c4526bf4bac6f7193cacf2ad1c8802f84be18 (diff)
downloadvim-git-2c4278fc738cca3fcd70cffd7ddc865ea9783694.tar.gz
updated for version 7.2-180v7.2.180
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index e374694ad..3c0ed203b 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -2240,7 +2240,6 @@ ex_cwindow(eap)
* ":cclose": close the window showing the list of errors.
* ":lclose": close the window showing the location list
*/
-/*ARGSUSED*/
void
ex_cclose(eap)
exarg_T *eap;
@@ -3211,7 +3210,7 @@ ex_vimgrep(eap)
break;
col = regmatch.endpos[0].col
+ (col == regmatch.endpos[0].col);
- if (col > STRLEN(ml_get_buf(buf, lnum, FALSE)))
+ if (col > (colnr_T)STRLEN(ml_get_buf(buf, lnum, FALSE)))
break;
}
line_breakcheck();