Module Name:    src
Committed By:   kamil
Date:           Mon Feb  3 15:47:04 UTC 2020

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

Log Message:
Fix usage of angle-brackets and quotes in make(1) manpage

make(1) has commands .include <file> and .include "file",
but the manpage was (inconsistently) rendering <file> with
angle-brackets (e.g. in UTF8  ) and "file" with curly-quotes
in HTML output (but not text).

This is an attempt to fix that and output only literal <file>
and "file" as is actually required in the makefile.fileoutput,

https://reviews.freebsd.org/D21470

Submitted by Mateusz Piotrowski (FreeBSD)


To generate a diff of this commit:
cvs rdiff -u -r1.276 -r1.277 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.276 src/usr.bin/make/make.1:1.277
--- src/usr.bin/make/make.1:1.276	Thu Dec 19 07:14:07 2019
+++ src/usr.bin/make/make.1	Mon Feb  3 15:47:03 2020
@@ -1,4 +1,4 @@
-.\"	$NetBSD: make.1,v 1.276 2019/12/19 07:14:07 maxv Exp $
+.\"	$NetBSD: make.1,v 1.277 2020/02/03 15:47:03 kamil Exp $
 .\"
 .\" Copyright (c) 1990, 1993
 .\"	The Regents of the University of California.  All rights reserved.
@@ -272,7 +272,7 @@ that do not depend on the target whose c
 .It Fl m Ar directory
 Specify a directory in which to search for sys.mk and makefiles included
 via the
-.Ao Ar file Ac Ns -style
+.Pf < Ar file Ns > Ns -style
 include statement.
 The
 .Fl m
@@ -280,7 +280,7 @@ option can be used multiple times to for
 This path will override the default system include path: /usr/share/mk.
 Furthermore the system include path will be appended to the search path used
 for
-.Qo Ar file Qc Ns -style
+.Pf \*q Ar file Ns \*q Ns -style
 include statements (see the
 .Fl I
 option).
@@ -1622,7 +1622,7 @@ dot
 .Pq Ql \&.
 character.
 Files are included with either
-.Cm \&.include Aq Ar file
+.Cm \&.include Pf < Ar file Ns >
 or
 .Cm \&.include Pf \*q Ar file Ns \*q .
 Variables between the angle brackets or double quotes are expanded

Reply via email to