]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* doc/make.texi (Call Function): Apply consistent formatting
authorCao jin <caoj.fnst@cn.fujitsu.com>
Tue, 27 Jun 2017 07:49:41 +0000 (15:49 +0800)
committerPaul Smith <psmith@gnu.org>
Thu, 25 Mar 2021 18:38:58 +0000 (14:38 -0400)
Copyright-paperwork-exempt: yes

doc/make.texi

index 45d3cec7aeccd486dd78f07341b3aec917ccb9e4..1ebf6ae2e756bdfec205951053a136dc9ba55255 100644 (file)
@@ -7991,7 +7991,7 @@ foo = $(call reverse,a,b)
 @end smallexample
 
 @noindent
-Here @var{foo} will contain @samp{b a}.
+Here @code{foo} will contain @samp{b a}.
 
 This one is slightly more interesting: it defines a macro to search for
 the first instance of a program in @code{PATH}:
@@ -8003,7 +8003,7 @@ LS := $(call pathsearch,ls)
 @end smallexample
 
 @noindent
-Now the variable LS contains @code{/bin/ls} or similar.
+Now the variable @code{LS} contains @code{/bin/ls} or similar.
 
 The @code{call} function can be nested.  Each recursive invocation gets
 its own local values for @code{$(1)}, etc.@: that mask the values of
@@ -8014,14 +8014,14 @@ higher-level @code{call}.  For example, here is an implementation of a
 map = $(foreach a,$(2),$(call $(1),$(a)))
 @end smallexample
 
-Now you can @var{map} a function that normally takes only one argument,
+Now you can @code{map} a function that normally takes only one argument,
 such as @code{origin}, to multiple values in one step:
 
 @smallexample
 o = $(call map,origin,o map MAKE)
 @end smallexample
 
-and end up with @var{o} containing something like @samp{file file default}.
+and end up with @code{o} containing something like @samp{file file default}.
 
 A final caution: be careful when adding whitespace to the arguments to
 @code{call}.  As with other functions, any whitespace contained in the