summaryrefslogtreecommitdiffstats
path: root/src/os_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index c43d9c172d..79d7f17d98 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -4747,7 +4747,7 @@ mch_call_shell_fork(
reset_signals(); // handle signals normally
UNBLOCK_SIGNALS(&curset);
-# ifdef FEAT_JOB_CHANNEL
+# ifdef FEAT_EVAL
if (ch_log_active())
{
ch_log(NULL, "closing channel log in the child process");
@@ -5465,7 +5465,7 @@ mch_call_shell(
char_u *cmd,
int options) // SHELL_*, see vim.h
{
-#ifdef FEAT_JOB_CHANNEL
+#ifdef FEAT_EVAL
ch_log(NULL, "executing shell command: %s", cmd);
#endif
#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
@@ -5597,7 +5597,7 @@ mch_job_start(char **argv, job_T *job, jobopt_T *options, int is_terminal)
reset_signals(); // handle signals normally
UNBLOCK_SIGNALS(&curset);
-# ifdef FEAT_JOB_CHANNEL
+# ifdef FEAT_EVAL
if (ch_log_active())
// close the log file in the child
ch_logfile((char_u *)"", (char_u *)"");
@@ -8324,7 +8324,7 @@ start_timeout(long msec)
timer_created = TRUE;
}
-# ifdef FEAT_JOB_CHANNEL
+# ifdef FEAT_EVAL
ch_log(NULL, "setting timeout timer to %d sec %ld nsec",
(int)interval.it_value.tv_sec, (long)interval.it_value.tv_nsec);
# endif