picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit c4bbf4f9a95f26fd8a62f499ad2fbefe1574b987
parent de03be276d855bd6452306b2902f395547435fed
Author: Alexander Burger <abu@software-lab.de>
Date:   Thu, 22 Nov 2012 19:36:46 +0100

Minor doc changes
Diffstat:
Mdoc/refD.html | 6+++---
Mdoc/refI.html | 6+++---
Mdoc/refT.html | 3++-
3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/doc/refD.html b/doc/refD.html @@ -489,9 +489,9 @@ href="refL.html#lint">lint</a></code>. <dd>The first form returns the value of <code>num</code> decremented by 1. The second form decrements the <code>VAL</code> of <code>var</code> by 1, or by <code>num</code>. If the first argument is <code>NIL</code>, it is returned -immediately. <code>(dec 'num)</code> is equivalent to <code>(- 'num 1)</code> -and <code>(dec 'var)</code> is equivalent to <code>(set 'var (- var 1))</code>. -See also <code><a href="refI.html#inc">inc</a></code> and <code><a +immediately. <code>(dec Num)</code> is equivalent to <code>(- Num 1)</code> and +<code>(dec 'Var)</code> is equivalent to <code>(set 'Var (- Var 1))</code>. See +also <code><a href="refI.html#inc">inc</a></code> and <code><a href="ref_.html#-">-</a></code>. <pre><code> diff --git a/doc/refI.html b/doc/refI.html @@ -198,9 +198,9 @@ href="refC.html#ctl">ctl</a></code>. <dd>The first form returns the value of <code>num</code> incremented by 1. The second form increments the <code>VAL</code> of <code>var</code> by 1, or by <code>num</code>. If the first argument is <code>NIL</code>, it is returned -immediately. <code>(inc 'num)</code> is equivalent to <code>(+ 'num 1)</code> -and <code>(inc 'var)</code> is equivalent to <code>(set 'var (+ var 1))</code>. -See also <code><a href="refD.html#dec">dec</a></code> and <code><a +immediately. <code>(inc Num)</code> is equivalent to <code>(+ Num 1)</code> and +<code>(inc 'Var)</code> is equivalent to <code>(set 'Var (+ Var 1))</code>. See +also <code><a href="refD.html#dec">dec</a></code> and <code><a href="ref_.html#+">+</a></code>. <pre><code> diff --git a/doc/refT.html b/doc/refT.html @@ -29,7 +29,8 @@ href="refB.html#*Bye">*Bye</a></code>. <dd>A global variable which may hold a cons pair of two strings with escape sequences, to switch on and off an alternative transient symbol markup. If set, <code><a href="refP.html#print">print</a></code> will output these sequences to -the console instead of the standard double quote markup characters. +the console instead of the standard double quote markup characters. An easy way +to switch on transient symbol markup is loading "@lib/tsm.l". <pre><code> : (de *Tsm "^[[4m" . "^[[24m") # vt100 escape sequences for underline