diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-05 19:37:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-05 19:37:32 +0000 |
commit | 0bcc813a3494fcf31dda25258ed3facc034c77f6 (patch) | |
tree | 936b7165cba1b700fd7b43b562e92f46250a8802 /sh.c | |
parent | b0970d4fede16b6c1186b677c6d7d9e4652e459a (diff) |
Better label the globals.
Diffstat (limited to 'sh.c')
-rw-r--r-- | sh.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -73,8 +73,6 @@ static const unsigned int IF_TRUE_CONTEXT=0x2; static const unsigned int IF_FALSE_CONTEXT=0x4; static const unsigned int THEN_EXP_CONTEXT=0x8; static const unsigned int ELSE_EXP_CONTEXT=0x10; -unsigned int shell_context; - struct jobset { @@ -184,6 +182,13 @@ static struct built_in_command bltins_forking[] = { {NULL, NULL, NULL} }; + +/* Variables we export */ +unsigned int shell_context; /* Used in cmdedit.c to reset the + context when someone hits ^C */ + + +/* Globals that are static to this file */ static char *cwd; static char *local_pending_command; static struct jobset job_list = { NULL, NULL }; |