Fix title initialization
This commit is contained in:
parent
e7ef3c4ce9
commit
0b507bb731
1 changed files with 5 additions and 5 deletions
10
x.c
10
x.c
|
@ -1929,12 +1929,12 @@ main(int argc, char *argv[])
|
||||||
} ARGEND;
|
} ARGEND;
|
||||||
|
|
||||||
run:
|
run:
|
||||||
if (argc > 0) {
|
if (argc > 0) /* eat all remaining arguments */
|
||||||
/* eat all remaining arguments */
|
|
||||||
opt_cmd = argv;
|
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, "");
|
setlocale(LC_CTYPE, "");
|
||||||
XSetLocaleModifiers("");
|
XSetLocaleModifiers("");
|
||||||
cols = MAX(cols, 1);
|
cols = MAX(cols, 1);
|
||||||
|
|
Loading…
Reference in a new issue