mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
updated for version 7.3.204
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
This commit is contained in:
parent
bd8608d979
commit
9b83c2f979
@ -7657,7 +7657,7 @@ get_c_indent()
|
||||
* not the one from "if () {". */
|
||||
if (*l == '}')
|
||||
curwin->w_cursor.col =
|
||||
(l - ml_get_curline()) + 1;
|
||||
(colnr_T)(l - ml_get_curline()) + 1;
|
||||
|
||||
if ((trypos = find_start_brace(ind_maxcomment))
|
||||
== NULL
|
||||
|
@ -709,6 +709,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
204,
|
||||
/**/
|
||||
203,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user