aboutsummaryrefslogtreecommitdiffstats
path: root/flags.h
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>1996-12-23 17:02:34 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:49 +0000
commitccc6cda312fea9f0468ee65b8f368e9653e1380b (patch)
treeb059878adcfd876c4acb8030deda1eeb918c7e75 /flags.h
parent726f63884db0132f01745f1fb4465e6621088ccf (diff)
downloadandroid_external_bash-ccc6cda312fea9f0468ee65b8f368e9653e1380b.tar.gz
android_external_bash-ccc6cda312fea9f0468ee65b8f368e9653e1380b.tar.bz2
android_external_bash-ccc6cda312fea9f0468ee65b8f368e9653e1380b.zip
Imported from ../bash-2.0.tar.gz.
Diffstat (limited to 'flags.h')
-rw-r--r--flags.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/flags.h b/flags.h
index bcff4ef..d971cb8 100644
--- a/flags.h
+++ b/flags.h
@@ -19,8 +19,8 @@
with Bash; see the file COPYING. If not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-#if !defined (_FLAGS_H)
-#define _FLAGS_H
+#if !defined (_FLAGS_H_)
+#define _FLAGS_H_
#include "stdc.h"
@@ -41,12 +41,20 @@ extern struct flags_alist shell_flags[];
extern int
mark_modified_vars, exit_immediately_on_error, disallow_filename_globbing,
- locate_commands_in_functions, place_keywords_in_env, read_but_dont_execute,
+ place_keywords_in_env, read_but_dont_execute,
just_one_command, unbound_vars_is_error, echo_input_at_read,
- echo_command_at_execute, lexical_scoping, no_invisible_vars, noclobber,
- hashing_disabled, forced_interactive, privileged_mode,
+ echo_command_at_execute, no_invisible_vars, noclobber,
+ hashing_enabled, forced_interactive, privileged_mode,
asynchronous_notification, interactive_comments, no_symbolic_links;
+#if 0
+extern int lexical_scoping;
+#endif
+
+#if defined (BRACE_EXPANSION)
+extern int brace_expansion;
+#endif
+
#if defined (BANG_HISTORY)
extern int history_expansion;
#endif /* BANG_HISTORY */
@@ -62,4 +70,4 @@ extern char *which_set_flags __P((void));
/* A macro for efficiency. */
#define change_flag_char(flag, on_or_off) change_flag (flag, on_or_off)
-#endif /* _FLAGS_H */
+#endif /* _FLAGS_H_ */