aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/parse_execution.cpp
diff options
context:
space:
mode:
authorGravatar Andreas Nordal <andreas_nordal_4@hotmail.com>2016-03-13 20:18:37 +0100
committerGravatar Kurtis Rader <krader@skepticism.us>2016-03-17 16:37:52 -0700
commitf20e8420a8eb58c4e27509f624d7756d8078937d (patch)
treee981e7ae698e4d62b17e975a55f7746d3ddc7780 /src/parse_execution.cpp
parenta7012648fe64fe5e501a7439660684f93afcd60d (diff)
parse_execution.cpp: Remove line continuations
My IDE (Kdevelop 4.7.3) didn't tackle them.
Diffstat (limited to 'src/parse_execution.cpp')
-rw-r--r--src/parse_execution.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/parse_execution.cpp b/src/parse_execution.cpp
index 60885760..c5494287 100644
--- a/src/parse_execution.cpp
+++ b/src/parse_execution.cpp
@@ -1367,13 +1367,11 @@ parse_execution_result_t parse_execution_context_t::run_1_job(const parse_node_t
job_set_flag(j, JOB_FOREGROUND, ! tree.job_should_be_backgrounded(job_node));
- job_set_flag(j, JOB_TERMINAL, job_get_flag(j, JOB_CONTROL) \
- && (!is_subshell && !is_event));
+ job_set_flag(j, JOB_TERMINAL,
+ job_get_flag(j, JOB_CONTROL) && !is_subshell && !is_event);
- job_set_flag(j, JOB_SKIP_NOTIFICATION, is_subshell \
- || is_block \
- || is_event \
- || (!get_is_interactive()));
+ job_set_flag(j, JOB_SKIP_NOTIFICATION,
+ is_subshell || is_block || is_event || !get_is_interactive());
/* Tell the current block what its job is. This has to happen before we populate it (#1394) */
parser->current_block()->job = j;