[osicat-cvs] CVS update: src/Makefile src/osicat.lisp src/version.txt

Nikodemus Siivola nsiivola at common-lisp.net
Sun Oct 26 14:38:04 UTC 2003


Update of /project/osicat/cvsroot/src
In directory common-lisp.net:/tmp/cvs-serv21692

Modified Files:
	Makefile osicat.lisp version.txt 
Log Message:
* Version 0.3
* Fixed return value from (SETF ENVIRONMENT-VARIABLE)

Date: Sun Oct 26 09:38:03 2003
Author: nsiivola

Index: src/Makefile
diff -u src/Makefile:1.2 src/Makefile:1.3
--- src/Makefile:1.2	Thu Oct 23 19:48:05 2003
+++ src/Makefile	Sun Oct 26 09:38:02 2003
@@ -72,6 +72,7 @@
 	ln -s $(NAME).tar.gz.asc $(LINK).asc
 	ln -s $(NAME).tar.gz $(LINK)
 	mv $(NAME).tar.gz $(NAME).tar.gz.asc $(LINK) $(LINK).asc $(HTML)/files/
+	cp README $(HTML)/files/
 #	$(RSYNC_FTP) && $(FTP_PERMS)
 
 public_html:


Index: src/osicat.lisp
diff -u src/osicat.lisp:1.3 src/osicat.lisp:1.4
--- src/osicat.lisp:1.3	Sun Oct 26 09:19:32 2003
+++ src/osicat.lisp	Sun Oct 26 09:38:02 2003
@@ -219,7 +219,7 @@
   (with-c-name (cname name)
     (with-c-name (cvalue value)
       (if (zerop (setenv cname cvalue 1))
-	  value
+	  (convert-from-cstring cvalue)
 	  (error "Could not set environment variable ~S to ~S." name value)))))
 
 (defun makunbound-environment-variable (name)


Index: src/version.txt
diff -u src/version.txt:1.2 src/version.txt:1.3
--- src/version.txt:1.2	Thu Oct 23 19:48:05 2003
+++ src/version.txt	Sun Oct 26 09:38:02 2003
@@ -1,2 +1 @@
-0.2.2
-
+0.3





More information about the Osicat-cvs mailing list