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 ba8a0ca1f44cd05383f99524044dc60b60e14e50
parent 4641949434aae0eb3f2f777bb78f47aad45ac3a7
Author: Alexander Burger <abu@software-lab.de>
Date:   Sat,  7 May 2011 18:20:50 +0200

Changed '@' to '!' for functions in URLs
Diffstat:
MINSTALL | 7++++---
MReleaseNotes | 6+++++-
2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/INSTALL b/INSTALL @@ -1,4 +1,4 @@ -05may11abu +07may11abu (c) Software Lab. Alexander Burger @@ -95,8 +95,9 @@ If that is not available, you can (as root) create four symbolic links from ---------- In a global installation, the 'pil' command should be used. You can either start -in plain or in debug mode. The difference is that for debug mode the command -must be followed by a single plus sign ('+') argument. +in plain or in debug mode. The difference is that for debug mode the command is +followed by single plus ('+') sign. The '+' must be the very last argument on +the command line. $ pil # Plain mode : diff --git a/ReleaseNotes b/ReleaseNotes @@ -1,4 +1,4 @@ -06may11abu +07may11abu (c) Software Lab. Alexander Burger @@ -27,3 +27,7 @@ 4. Changed the meta-character for function calls in URLs from '@' to '!' This was necessary, because '@' may conflict with home directory specifiers in path names. + + As a result, it may be necessary to fix existing applications. This involves + usually changing things like "@start" and "@stop" to "!start" and "!stop" in + all relevant places.