From d99558b9b8a3c359b7ed1ce8c0360bc7bbcc3ec5 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 1 Apr 2017 19:09:24 +0100 Subject: Fix some typos in pooptmodule. --- poezio/pooptmodule.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'poezio') 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' && -- cgit v1.2.3