mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 13:42:14 +00:00
Highlight rule descriptions.
[SVN r77637]
This commit is contained in:
@@ -1792,28 +1792,28 @@ using fop : <optional><replaceable>fop-command</replaceable></optional> : <optio
|
||||
functionality for importing modules.</para>
|
||||
|
||||
<orderedlist>
|
||||
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>binding</primary></indexterm>
|
||||
<code>rule binding ( module )</code>
|
||||
<code lang="jam">rule binding ( module-name )</code>
|
||||
<para>Returns the binding of the given module.</para>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>poke</primary></indexterm>
|
||||
<code>rule poke ( module-name ? : variables + : value * )</code>
|
||||
<code lang="jam">rule poke ( module-name ? : variables + : value * )</code>
|
||||
<para>Sets the module-local value of a variable.</para>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>peek</primary></indexterm>
|
||||
<code>rule peek ( module-name ? : variables + )</code>
|
||||
<code lang="jam">rule peek ( module-name ? : variables + )</code>
|
||||
<para>Returns the module-local value of a variable.</para>
|
||||
</listitem>
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>call-in</primary></indexterm>
|
||||
<code>rule call-in ( module-name ? : rule-name args * : * ) </code>
|
||||
<code lang="jam">rule call-in ( module-name ? : rule-name args * : * ) </code>
|
||||
<para>Call the given rule locally in the given module. Use
|
||||
this for rules accepting rule names as arguments, so that
|
||||
the passed rule may be invoked in the context of the rule's
|
||||
@@ -1825,7 +1825,7 @@ using fop : <optional><replaceable>fop-command</replaceable></optional> : <optio
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>call-locally</primary></indexterm>
|
||||
<code>rule call-locally ( qualified-rule-name args * : * )</code>
|
||||
<code lang="jam">rule call-locally ( qualified-rule-name args * : * )</code>
|
||||
<para>Given a possibly qualified rule name and arguments, remove
|
||||
any initial module qualification from the rule and invoke it in
|
||||
that module. If there is no module qualification, the rule is
|
||||
@@ -1836,7 +1836,7 @@ using fop : <optional><replaceable>fop-command</replaceable></optional> : <optio
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>load</primary></indexterm>
|
||||
<code>rule load ( module-name : filename ? : search * )</code>
|
||||
<code lang="jam">rule load ( module-name : filename ? : search * )</code>
|
||||
<para>Load the indicated module if it is not already loaded.</para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
@@ -1861,7 +1861,7 @@ using fop : <optional><replaceable>fop-command</replaceable></optional> : <optio
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>import</primary></indexterm>
|
||||
<code>rule import ( module-names + : rules-opt * : rename-opt * )</code>
|
||||
<code lang="jam">rule import ( module-names + : rules-opt * : rename-opt * )</code>
|
||||
<para>Load the indicated module and import rule names into the
|
||||
current module. Any members of <code>rules-opt</code> will be
|
||||
available without qualification in the caller's module. Any
|
||||
@@ -1877,7 +1877,7 @@ using fop : <optional><replaceable>fop-command</replaceable></optional> : <optio
|
||||
|
||||
<listitem>
|
||||
<indexterm><primary>clone-rules</primary></indexterm>
|
||||
<code>rule clone-rules ( source-module target-module )</code>
|
||||
<code lang="jam">rule clone-rules ( source-module target-module )</code>
|
||||
<para>Define exported copies in <code>$(target-module)</code>
|
||||
of all rules exported from <code>$(source-module)</code>. Also
|
||||
make them available in the global module with qualification,
|
||||
|
||||
Reference in New Issue
Block a user