Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r77637 - trunk/tools/build/v2/doc/src
From: steven_at_[hidden]
Date: 2012-03-29 19:50:39


Author: steven_watanabe
Date: 2012-03-29 19:50:39 EDT (Thu, 29 Mar 2012)
New Revision: 77637
URL: http://svn.boost.org/trac/boost/changeset/77637

Log:
Highlight rule descriptions.
Text files modified:
   trunk/tools/build/v2/doc/src/reference.xml | 18 +++++++++---------
   1 files changed, 9 insertions(+), 9 deletions(-)

Modified: trunk/tools/build/v2/doc/src/reference.xml
==============================================================================
--- trunk/tools/build/v2/doc/src/reference.xml (original)
+++ trunk/tools/build/v2/doc/src/reference.xml 2012-03-29 19:50:39 EDT (Thu, 29 Mar 2012)
@@ -1792,28 +1792,28 @@
       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 @@
 
         <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 @@
 
         <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 @@
 
         <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 @@
 
         <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,


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk