diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-04-01 19:09:24 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-04-01 19:09:53 +0100 |
commit | d99558b9b8a3c359b7ed1ce8c0360bc7bbcc3ec5 (patch) | |
tree | a099fbe2a4dbf37712e614bf8932bada3ef998ce | |
parent | c8ee85cca7d5fbb5ba40d6eff60031e1e8deaa2c (diff) | |
download | poezio-d99558b9b8a3c359b7ed1ce8c0360bc7bbcc3ec5.tar.gz poezio-d99558b9b8a3c359b7ed1ce8c0360bc7bbcc3ec5.tar.bz2 poezio-d99558b9b8a3c359b7ed1ce8c0360bc7bbcc3ec5.tar.xz poezio-d99558b9b8a3c359b7ed1ce8c0360bc7bbcc3ec5.zip |
Fix some typos in pooptmodule.
-rw-r--r-- | poezio/pooptmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/poezio/pooptmodule.c b/poezio/pooptmodule.c index 69fb7f6f..b1dc56ed 100644 --- a/poezio/pooptmodule.c +++ b/poezio/pooptmodule.c @@ -103,13 +103,13 @@ static PyObject* poopt_cut_text(PyObject* self, PyObject* args) while (buffer < end) { - /* Special case to jump poezio special characters that are contained - * in the python string, but should not be counted as chars, because + /* Special case to skip poezio special characters that are contained + * in the python string, but should not be counted as chars because * they will not be displayed. Those are the formatting chars (to * insert colors or things like that in the string) */ if (*buffer == 25) /* \x19 */ { - /* Jump everything until the end of this format marker, but + /* Skip everything until the end of this format marker, but * without increasing the number of columns of the current * line. Because these chars are not printed. */ while (buffer < end && *buffer != 'u' && |