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 6cf2b6dc5b5e5884ec36381ebd0c133040f36b62
parent f8f993bd3826e2f78a59bf6885b71389df1905b3
Author: Alexander Burger <abu@software-lab.de>
Date:   Sun,  4 Nov 2012 16:07:25 +0100

Use "/" instead of "/tmp" for 'chdir' unit test
Diffstat:
Mtest/lib/misc.l | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/lib/misc.l b/test/lib/misc.l @@ -1,4 +1,4 @@ -# 27jan12abu +# 04nov12abu # (c) Software Lab. Alexander Burger ### locale ### @@ -209,8 +209,8 @@ ### chdir ### (let P (pwd) - (chdir "/tmp" - (test "/tmp" (pwd)) ) + (chdir "/" + (test "/" (pwd)) ) (test P *PWD) )