Skip to content
Snippets Groups Projects
Commit 33c1b198 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.410

Problem:    Compiler error for // comment. (Joachim Schmitz)
Solution:   Turn into /* comment */.
parent 7474c7c3
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,7 @@ trunc_string(s, buf, room, buflen)
}
else
{
buf[e - 1] = NUL; // make sure it is truncated
buf[e - 1] = NUL; /* make sure it is truncated */
}
}
......
......@@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
410,
/**/
409,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment