mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-29 22:41:16 -03:00
Make is_event and other globals part of parser_t libdata
This commit is contained in:
@@ -52,11 +52,6 @@
|
||||
/// The signals that signify crashes to us.
|
||||
static const int crashsignals[] = {SIGABRT, SIGBUS, SIGFPE, SIGILL, SIGSEGV, SIGSYS};
|
||||
|
||||
bool is_subshell = false;
|
||||
bool is_block = false;
|
||||
bool is_breakpoint = false;
|
||||
int is_event = 0;
|
||||
|
||||
static relaxed_atomic_bool_t s_is_interactive_session{false};
|
||||
bool is_interactive_session() { return s_is_interactive_session; }
|
||||
void set_interactive_session(bool flag) { s_is_interactive_session = flag; }
|
||||
|
||||
Reference in New Issue
Block a user