From 9dda90de1e89c33a7bd04ad2e54a89b72f05be6f Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Thu, 29 Mar 2012 23:50:39 +0000 Subject: [PATCH] Highlight rule descriptions. [SVN r77637] --- v2/doc/src/reference.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/v2/doc/src/reference.xml b/v2/doc/src/reference.xml index e2217f937..abf979a92 100644 --- a/v2/doc/src/reference.xml +++ b/v2/doc/src/reference.xml @@ -1792,28 +1792,28 @@ using fop : fop-command : - + binding - rule binding ( module ) + rule binding ( module-name ) Returns the binding of the given module. poke - rule poke ( module-name ? : variables + : value * ) + rule poke ( module-name ? : variables + : value * ) Sets the module-local value of a variable. peek - rule peek ( module-name ? : variables + ) + rule peek ( module-name ? : variables + ) Returns the module-local value of a variable. call-in - rule call-in ( module-name ? : rule-name args * : * ) + rule call-in ( module-name ? : rule-name args * : * ) 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 : fop-command : call-locally - rule call-locally ( qualified-rule-name args * : * ) + rule call-locally ( qualified-rule-name args * : * ) 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 : fop-command : load - rule load ( module-name : filename ? : search * ) + rule load ( module-name : filename ? : search * ) Load the indicated module if it is not already loaded. @@ -1861,7 +1861,7 @@ using fop : fop-command : import - rule import ( module-names + : rules-opt * : rename-opt * ) + rule import ( module-names + : rules-opt * : rename-opt * ) Load the indicated module and import rule names into the current module. Any members of rules-opt will be available without qualification in the caller's module. Any @@ -1877,7 +1877,7 @@ using fop : fop-command : clone-rules - rule clone-rules ( source-module target-module ) + rule clone-rules ( source-module target-module ) Define exported copies in $(target-module) of all rules exported from $(source-module). Also make them available in the global module with qualification,