Browse Source

Fixing the resizing behaviour.

master
Christoph Lohmann 12 years ago
parent
commit
67c1a23053
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      st.c

+ 4
- 0
st.c View File

@ -739,6 +739,10 @@ execsh(void) {
char **args;
char *envshell = getenv("SHELL");
unsetenv("COLUMNS");
unsetenv("LINES");
unsetenv("TERMCAP");
DEFAULT(envshell, SHELL);
putenv("TERM="TNAME);
args = opt_cmd ? opt_cmd : (char*[]){envshell, "-i", NULL};


Loading…
Cancel
Save