Module Name:    src
Committed By:   rillig
Date:           Mon Sep 12 07:21:10 UTC 2022

Modified Files:
        src/usr.bin/make: make.1

Log Message:
make.1: fix style of ellipsis

In most places, '...' is not intended to be entered verbatim, instead it
is a placeholder, so don't use a fixed-width font for it.


To generate a diff of this commit:
cvs rdiff -u -r1.342 -r1.343 src/usr.bin/make/make.1

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/make.1
diff -u src/usr.bin/make/make.1:1.342 src/usr.bin/make/make.1:1.343
--- src/usr.bin/make/make.1:1.342	Mon Sep 12 07:13:02 2022
+++ src/usr.bin/make/make.1	Mon Sep 12 07:21:10 2022
@@ -1,4 +1,4 @@
-.\"	$NetBSD: make.1,v 1.342 2022/09/12 07:13:02 rillig Exp $
+.\"	$NetBSD: make.1,v 1.343 2022/09/12 07:21:10 rillig Exp $
 .\"
 .\" Copyright (c) 1990, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -50,7 +50,7 @@
 .Op Fl V Ar variable
 .Op Fl v Ar variable
 .Op Ar variable\| Ns Cm \&= Ns Ar value
-.Op Ar target ...
+.Op Ar target No ...
 .Sh DESCRIPTION
 .Nm
 is a program designed to simplify the maintenance of other programs.
@@ -1269,7 +1269,7 @@ instead.
 The general format of a variable expansion is:
 .Pp
 .Sm off
-.D1 Ic \&${ Ar variable\| Oo Ic \&: Ar modifier\| Oo Ic \&: Ar ... Oc Oc Ic \&}
+.D1 Ic \&${ Ar variable\| Oo Ic \&: Ar modifier\| Oo Ic \&: No ... Oc Oc Ic \&}
 .Sm on
 .Pp
 Each modifier begins with a colon.
@@ -1279,9 +1279,9 @@ To escape a colon, precede it with a bac
 A list of indirect modifiers can be specified via a variable, as follows:
 .Pp
 .Bd -literal -offset indent
-.Ar modifier_variable\^ Li \&= Ar modifier Ns Oo Ic \&: Ns Ar ... Oc
+.Ar modifier_variable\^ Li \&= Ar modifier Ns Oo Ic \&: Ns No ... Oc
 .Sm off
-.Ic \&${ Ar variable Ic \&:${ Ar modifier_variable Ic \&} Oo Ic \&: Ar ... Oc Ic \&}
+.Ic \&${ Ar variable Ic \&:${ Ar modifier_variable Ic \&} Oo Ic \&: No ... Oc Ic \&}
 .Sm on
 .Ed
 .Pp
@@ -1802,7 +1802,7 @@ directories specified using the
 option are searched before the system makefile directory.
 .Pp
 For compatibility with other make variants,
-.Sq Cm include Ar file ...
+.Sq Cm include Ar file No ...
 (without leading dot)
 is also accepted.
 .Pp
@@ -1820,7 +1820,7 @@ but stale dependencies within the includ
 .Ss Exporting variables
 The directives for exporting and unexporting variables are:
 .Bl -tag -width Ds
-.It Ic .export Ar variable ...
+.It Ic .export Ar variable No ...
 Export the specified global variable.
 If no variable list is provided, all globals are exported
 except for internal variables (those that start with
@@ -1835,7 +1835,7 @@ For compatibility with other make progra
 Appending a variable name to
 .Va .MAKE.EXPORTED
 is equivalent to exporting a variable.
-.It Ic .export-env Ar variable ...
+.It Ic .export-env Ar variable No ...
 The same as
 .Ql .export ,
 except that the variable is not appended to
@@ -1844,11 +1844,11 @@ This allows exporting a value to the env
 used by
 .Nm
 internally.
-.It Ic .export-literal Ar variable ...
+.It Ic .export-literal Ar variable No ...
 The same as
 .Ql .export-env ,
 except that variables in the value are not expanded.
-.It Ic .unexport Ar variable ...
+.It Ic .unexport Ar variable No ...
 The opposite of
 .Ql .export .
 The specified global
@@ -1903,39 +1903,39 @@ exits immediately.
 .Ss Conditionals
 The directives for conditionals are:
 .Bl -tag -width Ds
-.It Ic \&.if Oo \&! Oc Ns Ar expression Op Ar operator expression ...
+.It Ic \&.if Oo \&! Oc Ns Ar expression Op Ar operator expression No ...
 Test the value of an expression.
-.It Ic .ifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
+.It Ic .ifdef Oo \&! Oc Ns Ar variable Op Ar operator variable No ...
 Test the value of a variable.
-.It Ic .ifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
+.It Ic .ifndef Oo \&! Oc Ns Ar variable Op Ar operator variable No ...
 Test the value of a variable.
-.It Ic .ifmake Oo \&! Oc Ns Ar target Op Ar operator target ...
+.It Ic .ifmake Oo \&! Oc Ns Ar target Op Ar operator target No ...
 Test the target being requested.
-.It Ic .ifnmake Oo \&! Ns Oc Ar target Op Ar operator target ...
+.It Ic .ifnmake Oo \&! Ns Oc Ar target Op Ar operator target No ...
 Test the target being requested.
 .It Ic .else
 Reverse the sense of the last conditional.
-.It Ic .elif Oo \&! Ns Oc Ar expression Op Ar operator expression ...
+.It Ic .elif Oo \&! Ns Oc Ar expression Op Ar operator expression No ...
 A combination of
 .Sq Ic .else
 followed by
 .Sq Ic .if .
-.It Ic .elifdef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
+.It Ic .elifdef Oo \&! Oc Ns Ar variable Op Ar operator variable No ...
 A combination of
 .Sq Ic .else
 followed by
 .Sq Ic .ifdef .
-.It Ic .elifndef Oo \&! Oc Ns Ar variable Op Ar operator variable ...
+.It Ic .elifndef Oo \&! Oc Ns Ar variable Op Ar operator variable No ...
 A combination of
 .Sq Ic .else
 followed by
 .Sq Ic .ifndef .
-.It Ic .elifmake Oo \&! Oc Ns Ar target Op Ar operator target ...
+.It Ic .elifmake Oo \&! Oc Ns Ar target Op Ar operator target No ...
 A combination of
 .Sq Ic .else
 followed by
 .Sq Ic .ifmake .
-.It Ic .elifnmake Oo \&! Oc Ns Ar target Op Ar operator target ...
+.It Ic .elifnmake Oo \&! Oc Ns Ar target Op Ar operator target No ...
 A combination of
 .Sq Ic .else
 followed by
@@ -2057,7 +2057,7 @@ For loops are typically used to apply a 
 The syntax of a for loop is:
 .Pp
 .Bl -tag -compact -width Ds
-.It Ic \&.for Ar variable Oo Ar variable ... Oc Ic in Ar expression
+.It Ic \&.for Ar variable Oo Ar variable No ... Oc Ic in Ar expression
 .It Aq make-lines
 .It Ic \&.endfor
 .El
@@ -2084,7 +2084,7 @@ loop, it causes early termination of the
 .\" TODO: Describe limitations with defined/empty.
 .Ss Other directives
 .Bl -tag -width Ds
-.It Ic .undef Ar variable ...
+.It Ic .undef Ar variable No ...
 Un-define the specified global variables.
 Only global variables can be un-defined.
 .El

Reply via email to