summaryrefslogtreecommitdiff
path: root/shell.c~
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2011-12-07 09:19:15 -0500
committerChet Ramey <chet.ramey@case.edu>2011-12-07 09:19:15 -0500
commit35ee8ea05044d0fb74948148674853e5a20a9ead (patch)
treeabe2b964717dbc528de6d93d4f9e9e5fd3288fbd /shell.c~
parent57a071246a95991c054bfb7830aa80e6088c474d (diff)
downloadbash-35ee8ea05044d0fb74948148674853e5a20a9ead.tar.gz
commit bash-20080221 snapshot
Diffstat (limited to 'shell.c~')
-rw-r--r--shell.c~5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell.c~ b/shell.c~
index 4f440428..a5f74bbc 100644
--- a/shell.c~
+++ b/shell.c~
@@ -143,7 +143,7 @@ int hup_on_exit = 0;
int check_jobs_at_exit = 0;
/* Non-zero means to change to a directory name supplied as a command name */
-int autocd = 1;
+int autocd = 0;
/* Tells what state the shell was in when it started:
0 = non-interactive shell script
@@ -185,6 +185,9 @@ int have_devfd = HAVE_DEV_FD;
int have_devfd = 0;
#endif
+/* If == 31, shell compatible with bash-3.1, = =32 with bash-3.2, and so on */
+int shell_compatibility_level = DEFAULT_COMPAT_LEVEL;
+
/* The name of the .(shell)rc file. */
static char *bashrc_file = "~/.bashrc";