Fix regression from 69e32a6 when setting title. - st - simple terminal
HTML git clone https://git.parazyd.org/st
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit e7ef3c4ce95a21cfcd0988d493f636e1d0115871
DIR parent 8ab629031bd958d93deee9203fea32c38fe8ac30
HTML Author: Quentin Rameau <quinq@fifth.space>
Date: Fri, 16 Mar 2018 15:03:10 +0100
Fix regression from 69e32a6 when setting title.
Diffstat:
M x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/x.c b/x.c
@@ -1492,7 +1492,7 @@ void
xsettitle(char *p)
{
XTextProperty prop;
- DEFAULT(p, "st");
+ DEFAULT(p, opt_title);
Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
&prop);