Add support of csh (used on FreeBSD)

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
Slava Zanko 2009-07-25 23:00:27 +00:00
parent 66b91538a5
commit 44bb248ae5

View File

@ -403,6 +403,8 @@ init_subshell (void)
subshell_type = ZSH; subshell_type = ZSH;
else if (strstr (shell, "/tcsh")) else if (strstr (shell, "/tcsh"))
subshell_type = TCSH; subshell_type = TCSH;
else if (strstr (shell, "/csh"))
subshell_type = TCSH;
else if (strstr (shell, "/bash") || getenv ("BASH")) else if (strstr (shell, "/bash") || getenv ("BASH"))
subshell_type = BASH; subshell_type = BASH;
else if (strstr (shell, "/fish")) else if (strstr (shell, "/fish"))