From 3382bc70d24bfe931116f7f7ae6ddc5365afe568 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Mon, 27 Jul 2020 15:36:43 -0700 Subject: [PATCH] Fix a stale comment [ci skip] --- src/proc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proc.cpp b/src/proc.cpp index 3e213b44f..b24613e98 100644 --- a/src/proc.cpp +++ b/src/proc.cpp @@ -994,7 +994,7 @@ void job_t::continue_job(parser_t &parser) { if (is_foreground() && is_completed()) { // Set $status only if we are in the foreground and the last process in the job has - // finished and is not a short-circuited builtin. + // finished. auto &p = processes.back(); if (p->status.normal_exited() || p->status.signal_exited()) { parser.set_last_statuses(get_statuses());