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 eb5e244dd2812ef8db7f95ce3aee7036ffdd95cf
parent 1bfb74f9b4140429dffab39c65205a2f0326ff2c
Author: Alexander Burger <abu@software-lab.de>
Date:   Thu,  9 May 2013 09:45:18 +0200

Fixed 'allow' example explanation
Diffstat:
Mdoc/app.html | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/app.html b/doc/app.html @@ -263,12 +263,12 @@ href="refA.html#allow">allow</a></code> functions <pre><code> (allowed ("app/") - "!start" "@lib.css" "customer.l" "article.l" ) + "!start" "!stop" "@lib.css" "!psh" ) </code></pre> -<p>This is usually called in the beginning of an application, and allows access -to the directory "@img/", to the function 'start', and to the files "@lib.css", -"customer.l" and "article.l". +<p>This is usually called at the beginning of an application, and allows access +to the directory "img/", to the functions 'start', 'stop' and 'psh', and to the +file "@lib.css". <p>Later in the program, <code>*Allow</code> may be dynamically extended with <code>allow</code>