diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-06-23 21:34:41 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-06-23 21:34:41 -0700 |
| commit | 874d317334fae1ddce316f9b6f4d0ce4e434bf52 (patch) | |
| tree | 929f924d3c3696d3aa9917aca0e7048bbe3e93e8 /libterm/tgoto.c | |
| parent | 15bd7946cc838a3151c357e4b0bc1ab85eecda62 (diff) | |
heirloom vi fixes from arch AUR
Diffstat (limited to 'libterm/tgoto.c')
| -rw-r--r-- | libterm/tgoto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libterm/tgoto.c b/libterm/tgoto.c index 07316db..c497046 100644 --- a/libterm/tgoto.c +++ b/libterm/tgoto.c @@ -102,7 +102,7 @@ toohard: return ("OOPS"); } added[0] = 0; - while (c = *cp++) { + while ((c = *cp++)) { if (c != '%') { *dp++ = c; continue; |
