bash-5.0 distribution sources and documentation

This commit is contained in:
Chet Ramey
2019-01-07 09:27:52 -05:00
parent 6444760999
commit d233b485e8
528 changed files with 84836 additions and 67099 deletions
+30
View File
@@ -72,6 +72,7 @@ extern int EOF_Reached;
#define EX_REDIRFAIL 259 /* redirection failed */
#define EX_BADASSIGN 260 /* variable assignment error */
#define EX_EXPFAIL 261 /* word expansion failed */
#define EX_DISKFALLBACK 262 /* fall back to disk command from builtin */
/* Flag values that control parameter pattern substitution. */
#define MATCH_ANY 0x000
@@ -90,14 +91,43 @@ extern char **shell_environment;
extern WORD_LIST *rest_of_args;
/* Generalized global variables. */
extern char *command_execution_string;
extern int debugging_mode;
extern int executing, login_shell;
extern int interactive, interactive_shell;
extern int startup_state;
extern int reading_shell_script;
extern int shell_initialized;
extern int bash_argv_initialized;
extern int subshell_environment;
extern int current_command_number;
extern int indirection_level;
extern int shell_compatibility_level;
extern int running_under_emacs;
extern int posixly_correct;
extern int no_line_editing;
extern char *shell_name;
extern char *current_host_name;
extern int subshell_argc;
extern char **subshell_argv;
extern char **subshell_envp;
/* variables managed using shopt */
extern int hup_on_exit;
extern int check_jobs_at_exit;
extern int autocd;
extern int check_window_size;
/* from version.c */
extern int build_version, patch_level;
extern char *dist_version, *release_status;
extern int locale_mb_cur_max;
extern int locale_utf8locale;
/* Structure to pass around that holds a bitmap of file descriptors
to close, and the size of that structure. Used in execute_cmd.c. */