From 2eff456e454b89d5d500a52a2ff304d610afa62d Mon Sep 17 00:00:00 2001 From: harti Date: Fri, 4 Feb 2005 08:11:58 +0000 Subject: [PATCH] Use tabs to move to the comments instead of wild mixes of tabs and spaces. Submitted by: Max Okumoto --- usr.bin/make/job.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index dd550f7efbd8..2a4ec34e1103 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -471,20 +471,20 @@ JobCmpPid(const void *job, const void *pid) static int JobPrintCommand(void *cmdp, void *jobp) { - Boolean noSpecials; /* true if we shouldn't worry about - * inserting special commands into - * the input stream. */ - Boolean shutUp = FALSE; /* true if we put a no echo command - * into the command file */ - Boolean errOff = FALSE; /* true if we turned error checking - * off before printing the command - * and need to turn it back on */ - const char *cmdTemplate; /* Template to use when printing the - * command */ - char *cmdStart; /* Start of expanded command */ - LstNode *cmdNode; /* Node for replacing the command */ - char *cmd = cmdp; - Job *job = jobp; + Boolean noSpecials; /* true if we shouldn't worry about + * inserting special commands into + * the input stream. */ + Boolean shutUp = FALSE; /* true if we put a no echo command + * into the command file */ + Boolean errOff = FALSE; /* true if we turned error checking + * off before printing the command + * and need to turn it back on */ + const char *cmdTemplate; /* Template to use when printing the + * command */ + char *cmdStart; /* Start of expanded command */ + LstNode *cmdNode; /* Node for replacing the command */ + char *cmd = cmdp; + Job *job = jobp; noSpecials = (noExecute && !(job->node->type & OP_MAKE));