blob: fb21606c49f54455aab2c69c6b15337e82bbf3ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/subshell.c.orig
+++ src/subshell.c
@@ -386,6 +386,8 @@
subshell_type = ZSH;
else if (strstr (shell, "/tcsh"))
subshell_type = TCSH;
+ else if (strstr (shell, "/csh"))
+ subshell_type = TCSH;
else if (strstr (shell, "/bash") || getenv ("BASH"))
subshell_type = BASH;
else {
|