Hi
Attached patch fixed a few typos in Python messages mostly.
Regards
Dominique
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
diff -r 10d35c8b50e3 src/if_py_both.h
--- a/src/if_py_both.h Mon Feb 24 03:32:00 2014 +0100
+++ b/src/if_py_both.h Tue Mar 04 21:55:05 2014 +0100
@@ -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 -r 10d35c8b50e3 src/spell.c
--- a/src/spell.c Mon Feb 24 03:32:00 2014 +0100
+++ b/src/spell.c Tue Mar 04 21:55:05 2014 +0100
@@ -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