Module Name:    src
Committed By:   rillig
Date:           Fri Dec 11 00:22:23 UTC 2020

Modified Files:
        src/usr.bin/make: job.c

Log Message:
make(1): clean up comments for struct Shell


To generate a diff of this commit:
cvs rdiff -u -r1.364 -r1.365 src/usr.bin/make/job.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/job.c
diff -u src/usr.bin/make/job.c:1.364 src/usr.bin/make/job.c:1.365
--- src/usr.bin/make/job.c:1.364	Thu Dec 10 23:54:41 2020
+++ src/usr.bin/make/job.c	Fri Dec 11 00:22:23 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: job.c,v 1.364 2020/12/10 23:54:41 rillig Exp $	*/
+/*	$NetBSD: job.c,v 1.365 2020/12/11 00:22:23 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -143,7 +143,7 @@
 #include "trace.h"
 
 /*	"@(#)job.c	8.2 (Berkeley) 3/19/94"	*/
-MAKE_RCSID("$NetBSD: job.c,v 1.364 2020/12/10 23:54:41 rillig Exp $");
+MAKE_RCSID("$NetBSD: job.c,v 1.365 2020/12/11 00:22:23 rillig Exp $");
 
 /*
  * A shell defines how the commands are run.  All commands for a target are
@@ -190,8 +190,8 @@ typedef struct Shell {
 	const char *name;
 
 	Boolean hasEchoCtl;	/* True if both echoOff and echoOn defined */
-	const char *echoOff;	/* command to turn off echo */
-	const char *echoOn;	/* command to turn it back on again */
+	const char *echoOff;	/* command to turn echoing off */
+	const char *echoOn;	/* command to turn echoing back on */
 	const char *noPrint;	/* text to skip when printing output from
 				 * shell. This is usually the same as echoOff */
 	size_t noPrintLen;	/* length of noPrint command */

Reply via email to