From c6a940812d508f4dd40bbc3788bd2e33a4a9c14b Mon Sep 17 00:00:00 2001 From: Markus Flambard Date: Sat, 28 May 2011 12:38:12 +0200 Subject: [PATCH] Added descriptions in the reference documentation for the translation variables in CLERIC. --- doc/cleric_reference.html | 75 ++++++++++++++++++++++++++++++++++----- 1 file changed, 66 insertions(+), 9 deletions(-) diff --git a/doc/cleric_reference.html b/doc/cleric_reference.html index 5426c4d..3b8b931 100644 --- a/doc/cleric_reference.html +++ b/doc/cleric_reference.html @@ -714,7 +714,13 @@

Variables

[Special variable]
*atom-symbol-package*
- Initial value: :KEYWORD +

+ Initial value: :KEYWORD +

+

+ Defines the package in which new symbols sent from remote nodes will be + interned. +


@@ -724,7 +730,13 @@

Variables

[Special variable]
*erlang-false-is-lisp-nil*
- Initial value: NIL +

+ Initial value: NIL +

+

+ When true, the symbol |false| received from a remote + node will be translated to NIL. +


@@ -734,7 +746,13 @@

Variables

[Special variable]
*erlang-string-is-lisp-string*
- Initial value: NIL +

+ Initial value: NIL +

+

+ When true, a string received from a remote node will be translated + to a string instead of a list of integers. +


@@ -744,7 +762,13 @@

Variables

[Special variable]
*erlang-true-is-lisp-t*
- Initial value: NIL +

+ Initial value: NIL +

+

+ When true, the symbol |true| received from a remote + node will be translated to T. +


@@ -754,7 +778,16 @@

Variables

[Special variable]
*lisp-nil-at-tail-is-erlang-empty-list*
- Initial value: T +

+ Initial value: T +

+

+ When true, translate NIL at the tail of a list to an + empty list when sending to a remote node. +

+

+ Note: You will most likely never need to change this variable. +


@@ -764,7 +797,13 @@

Variables

[Special variable]
*lisp-nil-is-erlang-empty-list*
- Initial value: T +

+ Initial value: T +

+

+ When true, translate a non-tail NIL to an empty list + when sending to a remote node. +


@@ -774,7 +813,13 @@

Variables

[Special variable]
*lisp-nil-is-erlang-false*
- Initial value: NIL +

+ Initial value: NIL +

+

+ When true, translate a non-tail NIL to the symbol + |false| when sending to a remote node. +


@@ -784,7 +829,13 @@

Variables

[Special variable]
*lisp-string-is-erlang-binary*
-

Initial value: NIL

+

+ Initial value: NIL +

+

+ When true, translate a string to a binary when sending to a remote + node. +


@@ -794,7 +845,13 @@

Variables

[Special variable]
*lisp-t-is-erlang-true*
- Initial value: NIL +

+ Initial value: NIL +

+

+ When true, translate T to the symbol + |true| when sending to a remote node. +