about summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-07-28 13:46:44 -0400
committerJune McEnroe <june@causal.agency>2022-07-28 13:46:44 -0400
commit563ac9e3bf6a9c7a9646239de1f3ed3709779b5d (patch)
treeb7a24ab6ec50a706e9b7cd03ed34ded74118424e /ui.c
parentOnly show old topic if something was removed (diff)
downloadcatgirl-563ac9e3bf6a9c7a9646239de1f3ed3709779b5d.tar.gz
catgirl-563ac9e3bf6a9c7a9646239de1f3ed3709779b5d.zip
Use tiparm on to_status_line
According to terminfo(5), tsl takes a single parameter! Never seen
it happen, but this is technically more correct, I guess.
Diffstat (limited to '')
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 64bd6ce..2d1560e 100644
--- a/ui.c
+++ b/ui.c
@@ -157,7 +157,7 @@ void uiDraw(void) {
 	if (!to_status_line) return;
 	if (!strcmp(uiTitle, prevTitle)) return;
 	strcpy(prevTitle, uiTitle);
-	putp(to_status_line);
+	putp(tiparm(to_status_line, 0));
 	putp(uiTitle);
 	putp(from_status_line);
 	fflush(stdout);
src/commit/bin/up.sh?id=ecd7fe2964a210885ba6beb96ba2e1ef5895c09c&follow=1'>Use scrot for up -s if no screencaptureJune McEnroe 2021-02-07Enable mouse acceleration in XJune McEnroe 2021-02-07Set colours for Xt and cwmJune McEnroe 2021-02-07Set urgency on bell in xtermJune McEnroe 2021-02-07Add bindings for brightness controlJune McEnroe 2021-02-07Set X key repeat rateJune McEnroe 2021-02-07Bump font size to 12June McEnroe 2021-02-07Fully configure and rebind cwmJune McEnroe 2021-02-07Add BintiJune McEnroe 2021-02-07Finish configuring xtermJune McEnroe 2021-02-06Enable tapping, reverse scroll, set scaling in wsconsctlJune McEnroe 2021-02-06Set root window to black on purple snowJune McEnroe 2021-02-06Add xmodmap configurationJune McEnroe 2021-02-06Add initial OpenBSD X configurationJune McEnroe 2021-02-06Add xterm output to schemeJune McEnroe