diff options
author | Quentin Rameau <quinq@fifth.space> | 2018-03-16 16:19:18 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-03-16 16:44:30 +0100 |
commit | 0b507bb73138c636fd0ad6f2321624aae1346d58 (patch) | |
tree | c266cd84932f4212955ae8c3ce88155f14764a19 /x.c | |
parent | e7ef3c4ce95a21cfcd0988d493f636e1d0115871 (diff) |
Fix title initialization
Diffstat (limited to 'x.c')
-rw-r--r-- | x.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1929,12 +1929,12 @@ main(int argc, char *argv[]) } ARGEND; run: - if (argc > 0) { - /* eat all remaining arguments */ + if (argc > 0) /* eat all remaining arguments */ opt_cmd = argv; - if (!opt_title && !opt_line) - opt_title = basename(xstrdup(argv[0])); - } + + if (!opt_title) + opt_title = (opt_line || !opt_cmd) ? "st" : opt_cmd[0]; + setlocale(LC_CTYPE, ""); XSetLocaleModifiers(""); cols = MAX(cols, 1); |