mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.2.383
Problem: Vim doesn't build cleanly with MSVC 2010. Solution: Change a few types. (George Reilly)
This commit is contained in:
@@ -3090,7 +3090,7 @@ syn_add_start_off(result, regmatch, spp, idx, extra)
|
||||
{
|
||||
/* a "\n" at the end of the pattern may take us below the last line */
|
||||
result->lnum = syn_buf->b_ml.ml_line_count;
|
||||
col = STRLEN(ml_get_buf(syn_buf, result->lnum, FALSE));
|
||||
col = (int)STRLEN(ml_get_buf(syn_buf, result->lnum, FALSE));
|
||||
}
|
||||
if (off != 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user