commit bash-20200605 snapshot

This commit is contained in:
Chet Ramey
2020-06-05 14:34:49 -04:00
parent 32ba27b400
commit ab309487d5
120 changed files with 812 additions and 811 deletions
+8 -8
View File
@@ -1,7 +1,7 @@
/* flags.h -- a list of all the flags that the shell knows about. You add
a flag to this program by adding the name here, and in flags.c. */
/* Copyright (C) 1993-2015 Free Software Foundation, Inc.
/* Copyright (C) 1993-2020 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
@@ -71,15 +71,15 @@ extern int restricted;
extern int restricted_shell;
#endif /* RESTRICTED_SHELL */
extern int *find_flag __P((int));
extern int change_flag __P((int, int));
extern char *which_set_flags __P((void));
extern void reset_shell_flags __P((void));
extern int *find_flag PARAMS((int));
extern int change_flag PARAMS((int, int));
extern char *which_set_flags PARAMS((void));
extern void reset_shell_flags PARAMS((void));
extern char *get_current_flags __P((void));
extern void set_current_flags __P((const char *));
extern char *get_current_flags PARAMS((void));
extern void set_current_flags PARAMS((const char *));
extern void initialize_flags __P((void));
extern void initialize_flags PARAMS((void));
/* A macro for efficiency. */
#define change_flag_char(flag, on_or_off) change_flag (flag, on_or_off)