patch 7.4.1905
Problem:    Some compilers can't handle a double semicolon.
Solution:   Remove one semicolon.
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 8bb24c3..9f1db65 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -2542,7 +2542,7 @@
 {
     char_u  *p = text;
     char_u  *nextp = NULL;
-    char_u  *buf = NULL;;
+    char_u  *buf = NULL;
     int	    count = 0;
     int	    i;
     int	    allocated = FALSE;
diff --git a/src/version.c b/src/version.c
index 8305e39..7e7dd48 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1905,
+/**/
     1904,
 /**/
     1903,