=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/format-draw.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- src/usr.bin/tmux/format-draw.c 2019/05/23 14:44:33 1.9 +++ src/usr.bin/tmux/format-draw.c 2019/06/14 15:35:58 1.10 @@ -1,4 +1,4 @@ -/* $OpenBSD: format-draw.c,v 1.9 2019/05/23 14:44:33 nicm Exp $ */ +/* $OpenBSD: format-draw.c,v 1.10 2019/06/14 15:35:58 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott @@ -791,7 +791,8 @@ } else if (*cp > 0x1f && *cp < 0x7f) { width++; cp++; - } + } else + cp++; } return (width); }