Module Name:    src
Committed By:   rillig
Date:           Sat Dec 12 12:56:56 UTC 2020

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

Log Message:
make(1): rename ParseRunOptions to ParseCommandFlags


To generate a diff of this commit:
cvs rdiff -u -r1.382 -r1.383 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.382 src/usr.bin/make/job.c:1.383
--- src/usr.bin/make/job.c:1.382	Sat Dec 12 12:54:58 2020
+++ src/usr.bin/make/job.c	Sat Dec 12 12:56:56 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: job.c,v 1.382 2020/12/12 12:54:58 rillig Exp $	*/
+/*	$NetBSD: job.c,v 1.383 2020/12/12 12:56:56 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.382 2020/12/12 12:54:58 rillig Exp $");
+MAKE_RCSID("$NetBSD: job.c,v 1.383 2020/12/12 12:56:56 rillig Exp $");
 
 /*
  * A shell defines how the commands are run.  All commands for a target are
@@ -710,7 +710,7 @@ JobFindPid(int pid, JobStatus status, Bo
 
 /* Parse leading '@', '-' and '+', which control the exact execution mode. */
 static void
-ParseRunOptions(char **pp, CommandFlags *out_cmdFlags)
+ParseCommandFlags(char **pp, CommandFlags *out_cmdFlags)
 {
 	char *p = *pp;
 	out_cmdFlags->echo = TRUE;
@@ -900,7 +900,7 @@ JobPrintCommand(Job *job, ShellWriter *w
 
 	cmdTemplate = "%s\n";
 
-	ParseRunOptions(&xcmd, &cmdFlags);
+	ParseCommandFlags(&xcmd, &cmdFlags);
 
 	/* The '+' command flag overrides the -n or -N options. */
 	if (cmdFlags.always && !run) {

Reply via email to