mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-26 05:57:16 +00:00
* doc/make.texi: [SV 47163] Fix typo in 'ifdef' documentation.
This commit is contained in:
parent
b754a35df7
commit
4db6d0c694
1 changed files with 6 additions and 6 deletions
|
@ -6636,12 +6636,12 @@ effective; otherwise, the @var{text-if-false}, if any, is effective.
|
|||
|
||||
@item ifdef @var{variable-name}
|
||||
The @code{ifdef} form takes the @emph{name} of a variable as its
|
||||
argument, not a reference to a variable. The value of that variable
|
||||
has a non-empty value, the @var{text-if-true} is effective; otherwise,
|
||||
the @var{text-if-false}, if any, is effective. Variables that have
|
||||
never been defined have an empty value. The text @var{variable-name}
|
||||
is expanded, so it could be a variable or function that expands
|
||||
to the name of a variable. For example:
|
||||
argument, not a reference to a variable. If the value of that
|
||||
variable has a non-empty value, the @var{text-if-true} is effective;
|
||||
otherwise, the @var{text-if-false}, if any, is effective. Variables
|
||||
that have never been defined have an empty value. The text
|
||||
@var{variable-name} is expanded, so it could be a variable or function
|
||||
that expands to the name of a variable. For example:
|
||||
|
||||
@example
|
||||
bar = true
|
||||
|
|
Loading…
Reference in a new issue