updated for version 7.4.193
Problem:    Typos in messages.
Solution:   "then" -> "than". (Dominique Pelle)
diff --git a/src/if_py_both.h b/src/if_py_both.h
index 2442220..4c9dd8b 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -236,7 +236,7 @@
 	if (*result <= 0)
 	{
 	    PyErr_SET_STRING(PyExc_ValueError,
-		    N_("number must be greater then zero"));
+		    N_("number must be greater than zero"));
 	    return -1;
 	}
     }
@@ -2405,7 +2405,7 @@
 	if ((item = PyIter_Next(iterator)))
 	{
 	    PyErr_FORMAT(PyExc_ValueError,
-		    N_("attempt to assign sequence of size greater then %d "
+		    N_("attempt to assign sequence of size greater than %d "
 			"to extended slice"), 0);
 	    Py_DECREF(item);
 	    ret = -1;
@@ -2510,7 +2510,7 @@
 	{
 	    Py_DECREF(iterator);
 	    PyErr_FORMAT(PyExc_ValueError,
-		    N_("attempt to assign sequence of size greater then %d "
+		    N_("attempt to assign sequence of size greater than %d "
 			"to extended slice"), (int) slicelen);
 	    list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
 	    PyMem_Free(lis);
diff --git a/src/spell.c b/src/spell.c
index fd7e4e1..82bf2db 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -12037,7 +12037,7 @@
 		/* Normal byte, go one level deeper.  If it's not equal to the
 		 * byte in the bad word adjust the score.  But don't even try
 		 * when the byte was already changed.  And don't try when we
-		 * just deleted this byte, accepting it is always cheaper then
+		 * just deleted this byte, accepting it is always cheaper than
 		 * delete + substitute. */
 		if (c == fword[sp->ts_fidx]
 #ifdef FEAT_MBYTE
diff --git a/src/version.c b/src/version.c
index 9c0945e..c3776ac 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    193,
+/**/
     192,
 /**/
     191,