commit bash-20061221 snapshot

This commit is contained in:
Chet Ramey
2011-12-07 09:01:57 -05:00
parent 258e3d4698
commit f37c27ea61
101 changed files with 36488 additions and 1145 deletions
+11 -2
View File
@@ -139,6 +139,12 @@ int interactive_shell = 0;
shell exits. */
int hup_on_exit = 0;
/* Non-zero means to list status of running and stopped jobs at shell exit */
int check_jobs_at_exit = 0;
/* Non-zero means to change to a directory name supplied as a command name */
int autocd = 1;
/* Tells what state the shell was in when it started:
0 = non-interactive shell script
1 = interactive
@@ -172,6 +178,9 @@ time_t shell_start_time;
/* Are we running in an emacs shell window? */
int running_under_emacs;
/* Do we have /dev/fd? */
int have_devfd = HAVE_DEV_FD;
/* The name of the .(shell)rc file. */
static char *bashrc_file = "~/.bashrc";
@@ -212,8 +221,8 @@ int posixly_correct = 0; /* Non-zero means posix.2 superset. */
/* Some long-winded argument names. These are obviously new. */
#define Int 1
#define Charp 2
struct {
char *name;
static const struct {
const char *name;
int type;
int *int_value;
char **char_value;